mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
17 lines
262 B
Lua
17 lines
262 B
Lua
-- ~/.config/nvim/lua/plugins/mason.lua
|
|
return {
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
---@class PluginLspOpts
|
|
opts = {
|
|
---@type lspconfig.options
|
|
servers = {
|
|
pyright = {},
|
|
lua_ls = {},
|
|
yamlls = {},
|
|
bashls = {},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|