mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 12:03:52 +00:00
21 lines
512 B
Lua
21 lines
512 B
Lua
return {
|
|
{ "neovim/nvim-lspconfig", lazy = false },
|
|
{ "williamboman/mason.nvim", lazy = false, opts = {} },
|
|
{
|
|
"williamboman/mason-lspconfig.nvim",
|
|
lazy = false,
|
|
opts = {
|
|
ensure_installed = {
|
|
"lua_ls",
|
|
"pyright",
|
|
"rust_analyzer",
|
|
"gopls",
|
|
"clangd",
|
|
"bashls",
|
|
"jsonls",
|
|
"html",
|
|
"cssls",
|
|
},
|
|
},
|
|
},
|
|
}
|