We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0a274ab + 1860184 commit 198460cCopy full SHA for 198460c
2 files changed
lua/kickstart/plugins/lspconfig.lua
@@ -25,6 +25,9 @@ return {
25
-- Useful status updates for LSP.
26
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
27
{ 'j-hui/fidget.nvim', opts = {} },
28
+
29
+ -- Allows extra capabilities provided by nvim-cmp
30
+ 'hrsh7th/cmp-nvim-lsp',
31
},
32
config = function()
33
-- Brief aside: **What is LSP?**
lua/kickstart/plugins/treesitter.lua
@@ -18,8 +18,6 @@ return {
18
config = function(_, opts)
19
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
20
21
- -- Prefer git instead of curl in order to improve connectivity in some environments
22
- require('nvim-treesitter.install').prefer_git = true
23
---@diagnostic disable-next-line: missing-fields
24
require('nvim-treesitter.configs').setup(opts)
0 commit comments