2024-12-18 09:40:11 +03:00
|
|
|
{ pkgs, ... }:
|
2024-10-11 23:27:07 +03:00
|
|
|
{
|
2024-12-18 09:40:11 +03:00
|
|
|
file = (pkgs.formats.iniWithGlobalSection { }).generate "EditorconfigConfig" {
|
|
|
|
globalSection = {
|
|
|
|
root = true;
|
|
|
|
};
|
|
|
|
sections = {
|
|
|
|
"*" = {
|
|
|
|
charset = "utf-8";
|
|
|
|
end_of_line = "lf";
|
|
|
|
indent_size = 8;
|
|
|
|
indent_style = "tab";
|
|
|
|
insert_final_newline = false;
|
|
|
|
trim_trailing_whitespace = true;
|
|
|
|
};
|
|
|
|
"*.nix" = {
|
|
|
|
indent_style = "space";
|
|
|
|
indent_size = 2;
|
|
|
|
};
|
|
|
|
"*.{lua,kt,kts,rs,py}" = {
|
|
|
|
indent_size = 4;
|
|
|
|
};
|
|
|
|
"*.md" = {
|
|
|
|
trim_trailing_whitespace = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-04-06 03:03:58 +03:00
|
|
|
}
|