dotfiles/.config/nvim/lua/plugins/mason.lua
2023-04-25 00:19:07 +02:00

21 lines
392 B
Lua

return {
{
"williamboman/mason.nvim",
opts = {
-- add any tools you want to have installed below
ensure_installed = {
"stylua",
"shellcheck",
"shfmt",
"bash-language-server",
"flake8",
"elixir-ls",
"rustfmt",
"rust-analyzer",
"deno"
-- "gopls",
-- "gofumpt",
},
},
},
}