1
0

added csp dependency

This commit is contained in:
2025-03-17 05:30:30 +00:00
parent 57f8453637
commit 5539f2b00a

20
lua/plugins/csp.lua Normal file
View File

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