Add bash support to nixvim.
This commit is contained in:
parent
d91941be36
commit
deed6769b3
@ -132,6 +132,8 @@
|
|||||||
python = [ "isort" "black" ];
|
python = [ "isort" "black" ];
|
||||||
nix = [ "nixfmt" ];
|
nix = [ "nixfmt" ];
|
||||||
sh = [ "shfmt" ];
|
sh = [ "shfmt" ];
|
||||||
|
bash = [ "shfmt" ];
|
||||||
|
zsh = [ "zsh" ];
|
||||||
html = [ "prettierd" ];
|
html = [ "prettierd" ];
|
||||||
css = [ "prettierd" ];
|
css = [ "prettierd" ];
|
||||||
};
|
};
|
||||||
@ -141,6 +143,9 @@
|
|||||||
lintersByFt = {
|
lintersByFt = {
|
||||||
python = [ "mypy" ];
|
python = [ "mypy" ];
|
||||||
ruby = [ "ruby" ];
|
ruby = [ "ruby" ];
|
||||||
|
sh = [ "shellcheck" ];
|
||||||
|
bash = [ "shellcheck" ];
|
||||||
|
zsh = [ "shellcheck" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
harpoon = {
|
harpoon = {
|
||||||
@ -229,6 +234,7 @@
|
|||||||
html.enable = true;
|
html.enable = true;
|
||||||
emmet_ls.enable = true;
|
emmet_ls.enable = true;
|
||||||
cssls.enable = true;
|
cssls.enable = true;
|
||||||
|
bashls.enable = true;
|
||||||
};
|
};
|
||||||
keymaps = {
|
keymaps = {
|
||||||
diagnostic = {
|
diagnostic = {
|
||||||
|
Loading…
Reference in New Issue
Block a user