1
0
Files
nvim/lua/plugins/csp.lua
2025-03-17 05:30:30 +00:00

21 lines
404 B
Lua

return {
{
"hrsh7th/nvim-cmp",
-- load cmp on InsertEnter
event = "InsertEnter",
-- these dependencies will only be loaded when cmp loads
-- dependencies are always lazy-loaded unless specified otherwise
dependencies = {
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
},
config = function()
-- ...
end,
},
{
"neovim/nvim-lspconfig",
},
}