mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-16 19:22:00 -05:00
17 lines
278 B
Nix
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;
|
|
};
|
|
}
|