Files
neovim-config/lua/custom/plugins/supermaven.lua
2025-06-09 13:15:49 +02:00

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,
},
}