feat(dodt): add bashls and shellcheck

This commit is contained in:
Rubin Bhandari 2024-03-29 21:19:35 +05:45
parent 50b7f426f2
commit 617599b1ac

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",