diff options
| author | jstrot <44594069+jstrot@users.noreply.github.com> | 2024-07-29 20:02:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-29 20:02:37 -0400 |
| commit | 3fcdaf16465b6d606b2b833319b5f741ca5770e3 (patch) | |
| tree | 914946c236332ca898065dd5968e4a866afcd14f /nvim/init.lua | |
| parent | 8e0de3b2fb1ea3e75cf5631fee23ecce57f4dcd4 (diff) | |
| download | dots-3fcdaf16465b6d606b2b833319b5f741ca5770e3.tar.gz | |
Add explicit dependency of nvim-lspconfig on cmp-nvim-lsp (#1042)
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 3 |
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?** |