25 lines
407 B
Nix
25 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
|
||
|
];
|
||
|
}
|