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

This commit is contained in:
Rubin Bhandari 2024-03-30 02:55:03 +05:45 committed by GitHub
parent 50b7f426f2
commit 97480dc5d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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