mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-23 21:11:03 +00:00
Update
This commit is contained in:
parent
6b73ec0e98
commit
75eee2acfc
1 changed files with 12 additions and 9 deletions
|
|
@ -1,14 +1,17 @@
|
||||||
-- ~/.config/nvim/lua/plugins/mason.lua
|
-- ~/.config/nvim/lua/plugins/mason.lua
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"mason-org/mason-lspconfig.nvim",
|
"neovim/nvim-lspconfig",
|
||||||
opts = function(_, opts)
|
---@class PluginLspOpts
|
||||||
opts.ensure_installed = {
|
opts = {
|
||||||
"lua_ls",
|
---@type lspconfig.options
|
||||||
"pyright",
|
servers = {
|
||||||
"yamlls",
|
pyright = {},
|
||||||
"bashls",
|
lua_ls = {},
|
||||||
}
|
yamlls = {},
|
||||||
end,
|
bashls = {},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue