aboutsummaryrefslogtreecommitdiffstats
path: root/hm/soispha/conf/nvim/plgs
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-09-17 16:19:08 +0200
committerSoispha <soispha@vhack.eu>2023-09-17 16:19:08 +0200
commitb5d2d70cbc815aa343deb2402a4ec3f647bb23ab (patch)
tree74545db0bb07937f9019dceea27582bbf55f8de4 /hm/soispha/conf/nvim/plgs
parentbuild(treewide): Update (diff)
downloadnixos-config-b5d2d70cbc815aa343deb2402a4ec3f647bb23ab.zip
fix(hm/conf/nvim/plgs/nvim-lint): Remove shellcheck, as bash ls exits
The Bash language server already runs shellcheck, thus making the explicit call here useless.
Diffstat (limited to 'hm/soispha/conf/nvim/plgs')
-rw-r--r--hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua b/hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua
index 582da638..c6cd1420 100644
--- a/hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua
+++ b/hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua
@@ -3,11 +3,11 @@ require("lint").linters_by_ft = {
markdown = {};
-- tex = {'chktex'}, -- maybe add some text linters ?
- -- shell
- sh = { "shellcheck"; };
- bash = { "shellcheck"; };
- zsh = { "shellcheck"; };
- dash = { "shellcheck"; };
+ -- shell (already covered by the bash language sever)
+ -- sh = { "shellcheck"; };
+ -- bash = { "shellcheck"; };
+ -- zsh = { "shellcheck"; };
+ -- dash = { "shellcheck"; };
yaml = { "yamllint"; };
nix = { "nix"; "statix"; };