dotfiles/.config/nvim/lua/plugins/mason.lua
Sergio Laín 438af606a1
🐛 fix(nvim): changed a lot of stuff to adapt to the new 10.0 lazyvim update
the new lazyvim update was huge, especially because none-ls was moved to extras, so conform and lint
would be the default formatter-linting
2023-10-13 14:06:10 +02:00

36 lines
687 B
Lua

return {
{
"williamboman/mason.nvim",
opts = {
ensure_installed = {
"black",
"prettierd",
"codespell",
"csharpier",
"css-lsp",
"cssmodules-language-server",
"ktlint",
"hadolint",
"html-lsp",
"rustywind",
"sqlfmt",
"markdownlint",
"stylua",
"shfmt",
"angular-language-server",
"bash-language-server",
"omnisharp",
"sqlls",
"goimports",
"shellharden",
"codelldb",
"markdownlint",
"pylint",
"gofumpt",
"delve",
"impl",
"gomodifytags",
},
},
},
}