mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-16 03:40:57 +01:00
31 lines
667 B
Nix
31 lines
667 B
Nix
|
{
|
||
|
home-manager.sharedModules = [{
|
||
|
editorconfig = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
"*" = {
|
||
|
charset = "utf-8";
|
||
|
end_of_line = "lf";
|
||
|
insert_final_newline = true;
|
||
|
indent_size = 2;
|
||
|
indent_style = "space";
|
||
|
trim_trailing_whitespace = true;
|
||
|
};
|
||
|
"*.md" = { indent_style = "tab"; };
|
||
|
"Makefile" = {
|
||
|
indent_style = "tab";
|
||
|
indent_size = 4;
|
||
|
};
|
||
|
"*.html" = {
|
||
|
indent_style = "tab";
|
||
|
indent_size = 4;
|
||
|
};
|
||
|
"*.go" = {
|
||
|
indent_style = "tab";
|
||
|
indent_size = 4;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}];
|
||
|
}
|