Skip to content

Commit

Permalink
fix(bash): fix duplicate diagnostics in bash pack (#804)
Browse files Browse the repository at this point in the history
fix(pack): fix duplicate diagnostics in bash pack
  • Loading branch information
lucazz committed Mar 19, 2024
1 parent c730a7e commit 570a524
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lua/astrocommunity/pack/bash/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ return {
},
{
"jay-babu/mason-null-ls.nvim",
opts = function(_, opts)
opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, { "shellcheck", "shfmt" })
end,
opts = function(_, opts) opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, { "shfmt" }) end,
},
{
"jay-babu/mason-nvim-dap.nvim",
Expand Down

0 comments on commit 570a524

Please sign in to comment.