nixvim-config/plugins/bash.nix
2025-02-16 23:22:51 -08:00

24 lines
407 B
Nix

{ pkgs, ... }:
{
programs.nixvim.plugins = {
lsp.servers.bashls = {
enable = true;
filetypes = ["sh" "zsh"];
};
none-ls = {
sources = {
formatting.shfmt.enable = true;
formatting.shellharden.enable = true;
};
};
};
environment.systemPackages = with pkgs; [
shellcheck
shellharden
shfmt
nodePackages.bash-language-server
];
}