mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-26 18:59:00 +02:00
feat(dot): add bashls and shellcheck (#2879)
This commit is contained in:
parent
50b7f426f2
commit
97480dc5d2
1 changed files with 17 additions and 0 deletions
|
@ -7,6 +7,23 @@ local function have(path)
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
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
|
-- add some stuff to treesitter
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue