mirror of
https://github.com/Tilo-K/neovim-config.git
synced 2026-07-03 21:53:01 +00:00
22 lines
424 B
Lua
22 lines
424 B
Lua
return {
|
|
{
|
|
'supermaven-inc/supermaven-nvim',
|
|
config = function()
|
|
require('supermaven-nvim').setup {
|
|
binary = {
|
|
fetcher = {
|
|
powershell_cmd = {
|
|
'powershell',
|
|
'-NoProfile',
|
|
'-NonInteractive',
|
|
'-ExecutionPolicy',
|
|
'Bypass',
|
|
'-Command',
|
|
},
|
|
},
|
|
},
|
|
}
|
|
end,
|
|
},
|
|
}
|