feat: fix formatters

This commit is contained in:
Moritz Böhme 2024-12-15 14:02:25 +01:00
parent 7b1800548e
commit 004be60807
Signed by: moritz
GPG key ID: 970C6E89EB0547A9

View file

@ -14,10 +14,10 @@ in
go = [ "gofmt" ];
json = [ "jq" ];
lua = [ "stylua" ];
nix.__raw = ''{ "nixpkgs_fmt", "alejandra", stop_after_first=true }'';
nix = [ "nixpkgs_fmt" ];
python.__raw = ''
function(bufnr)
return { first("ruff_organize_imports", "isort"), first("ruff_format", "black")}
return { first(bufnr, "ruff_organize_imports", "isort"), first(bufnr, "ruff_format", "black")}
end
'';
rust = [ "rustfmt" ];