mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21: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
|
||||
return {
|
||||
{
|
||||
"mason-org/mason-lspconfig.nvim",
|
||||
opts = function(_, opts)
|
||||
opts.ensure_installed = {
|
||||
"lua_ls",
|
||||
"pyright",
|
||||
"yamlls",
|
||||
"bashls",
|
||||
}
|
||||
end,
|
||||
"neovim/nvim-lspconfig",
|
||||
---@class PluginLspOpts
|
||||
opts = {
|
||||
---@type lspconfig.options
|
||||
servers = {
|
||||
pyright = {},
|
||||
lua_ls = {},
|
||||
yamlls = {},
|
||||
bashls = {},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue