Compare commits
1 commit
14f14bd1af
...
329397fc04
Author | SHA1 | Date | |
---|---|---|---|
329397fc04 |
1 changed files with 14 additions and 12 deletions
|
@ -143,18 +143,20 @@ in
|
||||||
# FIXME: doesn't include formatters
|
# FIXME: doesn't include formatters
|
||||||
conform-nvim = {
|
conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
formatters.nixfmt.command = "${lib.getExe pkgs.nixfmt-rfc-style}";
|
settings = {
|
||||||
formattersByFt = {
|
formatters.nixfmt.command = "${lib.getExe pkgs.nixfmt-rfc-style}";
|
||||||
"_" = [ "trim_whitespace" ];
|
formatters_by_ft = {
|
||||||
c = [ "clang_format" ];
|
"_" = [ "trim_whitespace" ];
|
||||||
cpp = [ "clang_format" ];
|
c = [ "clang_format" ];
|
||||||
lua = [ "stylua" ];
|
cpp = [ "clang_format" ];
|
||||||
nix = [ "nixfmt" ];
|
lua = [ "stylua" ];
|
||||||
rust = [ "rustfmt" ];
|
nix = [ "nixfmt" ];
|
||||||
sh = [ "shfmt" ];
|
rust = [ "rustfmt" ];
|
||||||
toml = [ "taplo" ];
|
sh = [ "shfmt" ];
|
||||||
yaml = [ "yamlfmt" ];
|
toml = [ "taplo" ];
|
||||||
zig = [ "zigfmt" ];
|
yaml = [ "yamlfmt" ];
|
||||||
|
zig = [ "zigfmt" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
gitsigns.enable = true;
|
gitsigns.enable = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue