Add neovim config

This commit is contained in:
2025-04-23 18:43:29 -07:00
parent 9740b37a63
commit d93cbb14c0
15 changed files with 239 additions and 1 deletions

17
nvim/lua/plugins/cmp.lua Normal file
View File

@@ -0,0 +1,17 @@
return {
'hrsh7th/nvim-cmp',
version = false,
lazy = false,
dependencies = {
"neovim/nvim-lspconfig",
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
"hrsh7th/lspkind-nvim",
"honza/vim-snippets",
"hrsh7th/vim-vsnip",
"hrsh7th/cmp-vsnip",
"rafamadriz/friendly-snippets"
},
init = function()
end
}