diff options
Diffstat (limited to 'home')
| -rw-r--r-- | home/editorconfig.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/home/editorconfig.nix b/home/editorconfig.nix new file mode 100644 index 0000000..5c4561c --- /dev/null +++ b/home/editorconfig.nix @@ -0,0 +1,24 @@ +{ + 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_size = 4; + }; + + "*.rs" = { + indent_size = 4; + }; + }; + }; +} |
