Add explicit dependency of nvim-lspconfig on cmp-nvim-lsp (#1042)

This commit is contained in:
jstrot 2024-07-29 20:02:37 -04:00 committed by Richard V.H
parent b72b7d0a0f
commit f67b5f2a0b
1 changed files with 3 additions and 0 deletions

View File

@ -428,6 +428,9 @@ require('lazy').setup({
-- Useful status updates for LSP. -- Useful status updates for LSP.
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})` -- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
{ 'j-hui/fidget.nvim', opts = {} }, { 'j-hui/fidget.nvim', opts = {} },
-- Allows extra capabilities provided by nvim-cmp
'hrsh7th/cmp-nvim-lsp',
}, },
config = function() config = function()
-- Brief aside: **What is LSP?** -- Brief aside: **What is LSP?**