mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-27 19:45:36 +00:00
* feat(nvim): clean config, work in progress * feat: refactored plugins and configs * feat: stylua config, ufo, lsp refactor, cleanup * feat: renamed nvim to nvim-lazy, added alias * feat: renamed nvim-clean to be nvim, updated alias
17 lines
321 B
Lua
17 lines
321 B
Lua
-- CoPilot
|
|
-- https://github.com/zbirenbaum/copilot.lua
|
|
return {
|
|
'zbirenbaum/copilot.lua',
|
|
cmd = 'Copilot',
|
|
build = ':Copilot setup',
|
|
event = 'InsertEnter',
|
|
opts = {
|
|
suggestion = { enabled = false },
|
|
panel = { enabled = false },
|
|
filetypes = {
|
|
markdown = true,
|
|
help = true,
|
|
},
|
|
},
|
|
}
|