aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjstrot <44594069+jstrot@users.noreply.github.com>2024-07-29 20:02:37 -0400
committerGitHub <noreply@github.com>2024-07-29 20:02:37 -0400
commit186018483039b20dc39d7991e4fb28090dd4750e (patch)
treedc1285b02d1bb790e5b11b3ff19273c4b5b37866
parentbb9f84ca8f37c97ae248575680fc73c72ced471d (diff)
Add explicit dependency of nvim-lspconfig on cmp-nvim-lsp (#1042)
-rw-r--r--init.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index 04c5896..220d304 100644
--- a/init.lua
+++ b/init.lua
@@ -428,6 +428,9 @@ require('lazy').setup({
-- Useful status updates for LSP.
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
{ 'j-hui/fidget.nvim', opts = {} },
+
+ -- Allows extra capabilities provided by nvim-cmp
+ 'hrsh7th/cmp-nvim-lsp',
},
config = function()
-- Brief aside: **What is LSP?**