Files
dotfiles/nix/home/editorconfig/default.nix
Stefan Imhoff 9c6d620ce6 chore(nix): remove extra home packages for programs
As it can lead to conflicts between versions, I removed the additional
imports. They are not needed as the program is installed by enabling the
program.
2024-07-29 15:42:23 +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";
};
};
};
}