Skip to content

Commit

Permalink
fix: handle get remote plugin path on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jellydn committed Feb 4, 2024
1 parent b8d0a9d commit 0b917f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/CopilotChat/utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ M.get_remote_plugins_path = function()
local os = vim.loop.os_uname().sysname
if os == 'Linux' or os == 'Darwin' then
return '~/.local/share/nvim/rplugin.vim'
elseif os == 'Windows' then
else
return '~/AppData/Local/nvim/rplugin.vim'
end
end
Expand Down

0 comments on commit 0b917f6

Please sign in to comment.