unix-config/.config/nvim/plugin/mason.lua
2024-08-16 21:55:29 +10:00

18 lines
325 B
Lua

local status, mason = pcall(require, "mason")
if (not status) then
print("mason is not installed")
return
end
mason.setup({
ensure_installed = {
"prettier",
"lua-language-server",
"luaformatter",
"eslint_d",
"typescript-language-server",
"stylelint-lsp"
},
automatic_installation = true
})