Files
DCGOS/home/nixvim/plugins/lang/shell.nix
2025-09-21 15:54:31 +08:00

17 lines
278 B
Nix

{pkgs, ...}: {
plugins = {
conform-nvim.settings = {
formatters_by_ft = {
sh = ["shfmt"];
};
formatters = {
shfmt = {
command = "${pkgs.shfmt}/bin/shfmt";
};
};
};
lsp.servers.bashls.enable = true;
};
}