Files
dotfiles/home/editorconfig/default.nix
2024-07-31 13:11:51 +02:00

23 lines
413 B
Nix

{ ... }:
{
editorconfig = {
enable = true;
settings = {
"*" = {
charset = "utf-8";
end_of_line = "lf";
indent_style = "tab";
insert_final_newline = true;
trim_trailing_whitespace = true;
};
"*.{md,markdown,pandoc}" = {
trim_trailing_whitespace = false;
};
"Makefile" = {
indent_style = "tab";
};
};
};
}