Files
nixos-config/profiles/neovim/plugins/conform.nix
2025-12-11 20:49:12 +00:00

15 lines
252 B
Nix

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