feat(nvim): new nvim config (#28)

* 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
This commit is contained in:
Ismo Vuorinen
2024-09-22 03:52:02 +03:00
committed by GitHub
parent 36e0f36e06
commit 6f1e1a0416
50 changed files with 2046 additions and 131 deletions

View File

@@ -0,0 +1,16 @@
-- 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,
},
},
}