Files
nix-config/modules/programs/nixvim/_nixvim-config/plugins/formatter.nix

16 lines
257 B
Nix

{
plugins.conform-nvim = {
enable = true;
autoInstall.enable = true;
settings = {
formatters_by_ft = {
cpp = [ "clang_format" ];
markdown = [
"prettier"
];
};
formatters = { };
};
};
}