mirror of
https://codeberg.org/JasterV/dotfiles.git
synced 2026-04-26 18:40:04 +00:00
21 lines
392 B
Lua
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",
|
|
},
|
|
},
|
|
},
|
|
}
|