diff options
| author | DemonKingSwarn <rockingswarn@gmail.com> | 2026-04-20 19:01:46 +0530 |
|---|---|---|
| committer | DemonKingSwarn <rockingswarn@gmail.com> | 2026-04-20 19:01:46 +0530 |
| commit | b0b480a7f6e795a32a84105f2be22ed88219e319 (patch) | |
| tree | b6bf3b9de2f697c41a505c2ae3ea0e6b974999a6 | |
| parent | ec6d6b12f2d4c58638c729f55236e0651e415265 (diff) | |
| download | odysseus-b0b480a7f6e795a32a84105f2be22ed88219e319.zip odysseus-b0b480a7f6e795a32a84105f2be22ed88219e319.tar.gz | |
Please enter the commit message for your changes. Lines starting with '#' will be ignored, and an empty message aborts the commit.
an automated commit
| -rw-r--r-- | home.nix | 1 | ||||
| -rw-r--r-- | home/editorconfig.nix | 24 |
2 files changed, 25 insertions, 0 deletions
@@ -15,6 +15,7 @@ ./home/ghostty.nix ./home/mime-apps.nix ./home/xdg-user-dirs.nix + ./home/editorconfig.nix ]; home = { 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; + }; + }; + }; +} |
