34 lines
641 B
Lua
34 lines
641 B
Lua
return {
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
require("mason").setup({
|
|
ui = {
|
|
icons = {
|
|
package_installed = "✓",
|
|
package_pending = "➜",
|
|
package_uninstalled = "✗"
|
|
}
|
|
}
|
|
})
|
|
}
|
|
},
|
|
{
|
|
"williamboman/mason.nvim",
|
|
opts = function()
|
|
require "config.plugins.mason"
|
|
end,
|
|
},
|
|
{
|
|
"williamboman/mason-lspconfig.nvim",
|
|
dependencies = {
|
|
"williamboman/mason.nvim",
|
|
"neovim/nvim-lspconfig"
|
|
},
|
|
opts = {
|
|
require("mason-lspconfig").setup({
|
|
ensure_installed = { "lua_ls" },
|
|
})
|
|
}
|
|
},
|
|
}
|