feat(neovim): add py formatter and fix deprecated nixfmt package name

This commit is contained in:
2026-04-24 17:35:47 +02:00
parent 57e1853e2a
commit 3800b27864
+3 -1
View File
@@ -40,13 +40,15 @@
formatters_by_ft = {
lua = [ "stylua" ];
nix = [ "nixfmt" ];
python = [ "black" ];
};
};
};
extraPackages = with pkgs; [
stylua
nixfmt-rfc-style
nixfmt
black
];
};
}