16 lines
257 B
Nix
16 lines
257 B
Nix
{
|
|
plugins.conform-nvim = {
|
|
enable = true;
|
|
autoInstall.enable = true;
|
|
settings = {
|
|
formatters_by_ft = {
|
|
cpp = [ "clang_format" ];
|
|
markdown = [
|
|
"prettier"
|
|
];
|
|
};
|
|
formatters = { };
|
|
};
|
|
};
|
|
}
|