feat: add editorconfig to home-manager

This commit is contained in:
Mohammad Rafiq 2025-03-14 21:44:19 +08:00
parent e3070bf04b
commit af005dce39

View file

@ -13,10 +13,20 @@
./programs/zsh.nix
./scripts
];
home.shell.enableShellIntegration = true;
home.shellAliases = {
gs = "git status";
ai = "aichat -r %shell% -e";
};
editorconfig = {
enable = true;
settings = {
"*" = {
indent_style = "space";
indent_size = 2;
trim_trailing_whitespace = true;
insert_final_newline = false;
};
};
};
}