feat(dot): add bashls and shellcheck (#2879)

This commit is contained in:
Rubin Bhandari authored and GitHub committed 2024-03-29 22:10:03 +01:00
1 parent 50b7f426f2
commit 97480dc5d2
1 file changed
+17
+17
View File
@@ -7,6 +7,23 @@ local function have(path)
end
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
bashls = {},
},
},
},
{
"williamboman/mason.nvim",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed or {}, {
"shfmt",
"shellcheck",
})
end,
},
-- add some stuff to treesitter
{
"nvim-treesitter/nvim-treesitter",