From 5539f2b00a7a514c81b6376118d61329e15348a4 Mon Sep 17 00:00:00 2001 From: Scott Carroll Date: Mon, 17 Mar 2025 05:30:30 +0000 Subject: [PATCH] added csp dependency --- lua/plugins/csp.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lua/plugins/csp.lua diff --git a/lua/plugins/csp.lua b/lua/plugins/csp.lua new file mode 100644 index 0000000..b2ca118 --- /dev/null +++ b/lua/plugins/csp.lua @@ -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", + }, +} +