mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
17 lines
286 B
Nix
17 lines
286 B
Nix
|
{
|
||
|
editorconfig = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
"*" = {
|
||
|
charset = "utf-8";
|
||
|
end_of_line = "lf";
|
||
|
insert_final_newline = true;
|
||
|
indent_size = 2;
|
||
|
indent_style = "space";
|
||
|
trim_trailing_whitespace = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|