My neovim config

This commit is contained in:
2024-09-17 15:02:57 -03:00
commit f441f5af5b
37 changed files with 1712 additions and 0 deletions

15
lua/plugins/nvim-cmp.lua Normal file
View File

@@ -0,0 +1,15 @@
return {
"hrsh7th/nvim-cmp",
config = function(plugin, opts)
local cmp = require "cmp"
cmp.setup(opts)
cmp.setup {
experimental = {
ghost_text = true
}
}
end
}