diff --git a/users/modules/sh.nix b/users/modules/sh.nix index 1df2b70..49e2135 100644 --- a/users/modules/sh.nix +++ b/users/modules/sh.nix @@ -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; + }; + }; + }; }