|
|
@ -10,11 +10,11 @@ return {
|
|
|
|
|
|
|
|
|
|
|
|
-- 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 = {} },
|
|
|
|
|
|
|
|
|
|
|
|
-- `neodev` configures Lua LSP for your Neovim config, runtime and plugins
|
|
|
|
-- `neodev` configures Lua LSP for your Neovim config, runtime and plugins
|
|
|
|
-- used for completion, annotations and signatures of Neovim apis
|
|
|
|
-- used for completion, annotations and signatures of Neovim apis
|
|
|
|
{ 'folke/neodev.nvim', opts = {} },
|
|
|
|
{ 'folke/neodev.nvim', opts = {} },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
config = function()
|
|
|
|
config = function()
|
|
|
|
-- Brief aside: **What is LSP?**
|
|
|
|
-- Brief aside: **What is LSP?**
|
|
|
@ -159,7 +159,7 @@ return {
|
|
|
|
local servers = {
|
|
|
|
local servers = {
|
|
|
|
-- clangd = {},
|
|
|
|
-- clangd = {},
|
|
|
|
gopls = {},
|
|
|
|
gopls = {},
|
|
|
|
-- pyright = {},
|
|
|
|
pyright = {},
|
|
|
|
-- rust_analyzer = {},
|
|
|
|
-- rust_analyzer = {},
|
|
|
|
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
|
|
|
|
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
|
|
|
|
--
|
|
|
|
--
|
|
|
@ -216,5 +216,4 @@ return {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end,
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|