Files
dotfiles/nix/home/editorconfig/default.nix
2024-07-12 20:29:44 +02:00

25 lines
468 B
Nix

{ pkgs, ... }:
{
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";
};
};
};
home.packages = [ pkgs.editorconfig-core-c ];
}