mirror of https://github.com/LazyVim/starter
15 lines
234 B
Lua
15 lines
234 B
Lua
|
return {
|
||
|
-- add any tools you want to have installed below
|
||
|
{
|
||
|
"williamboman/mason.nvim",
|
||
|
opts = {
|
||
|
ensure_installed = {
|
||
|
"stylua",
|
||
|
"shellcheck",
|
||
|
"shfmt",
|
||
|
"flake8",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|