Compare commits
1 commit
060cb7d30a
...
75ad89d4b5
| Author | SHA1 | Date | |
|---|---|---|---|
| 75ad89d4b5 |
1 changed files with 8 additions and 1 deletions
|
|
@ -86,7 +86,14 @@ require("lazy").setup({
|
|||
{ "mason-org/mason.nvim", version = "^v2.2.1", opts = {} },
|
||||
{ "neovim/nvim-lspconfig", version = "^v2.5.0"}
|
||||
},
|
||||
opts = {},
|
||||
config = function()
|
||||
require("mason-lspconfig").setup({})
|
||||
|
||||
local lspconfig = require("lspconfig")
|
||||
for _, server in ipairs(require("mason-lspconfig").get_installed_servers()) do
|
||||
lspconfig[server].setup({})
|
||||
end
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue