summaryrefslogtreecommitdiffstats
path: root/nvim
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
commit3fcdaf16465b6d606b2b833319b5f741ca5770e3 (patch)
tree914946c236332ca898065dd5968e4a866afcd14f /nvim
parent8e0de3b2fb1ea3e75cf5631fee23ecce57f4dcd4 (diff)
downloaddots-3fcdaf16465b6d606b2b833319b5f741ca5770e3.tar.gz
Add explicit dependency of nvim-lspconfig on cmp-nvim-lsp (#1042)
Diffstat (limited to 'nvim')
-rw-r--r--nvim/init.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/nvim/init.lua b/nvim/init.lua
index 04c5896..220d304 100644
--- a/nvim/init.lua
+++ b/nvim/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?**