Files
nixos-config/modules/home-manager/neovim/plugins/conform.nix
2025-08-16 12:29:48 +00:00

14 lines
257 B
Nix

{
programs.nixvim.plugins.conform-nvim = {
enable = true;
settings = {
format_on_save = {};
formatters_by_ft = {
nix = ["alejandra"];
javascript = ["prettier"];
typescript = ["prettier"];
};
};
};
}