diff options
| author | Benjamin Linskey | 2026-05-22 03:36:52 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2026-05-24 01:22:56 -0400 |
| commit | 74fb73e0a45d3909d22dd06c1a97f713c5dda7ee (patch) | |
| tree | 239a84952d0d792603cfbd592ac68f582cdd0408 | |
| parent | 434ec14de2f3569d663a16f580f2963cc8b32656 (diff) | |
| download | dotfiles-74fb73e0a45d3909d22dd06c1a97f713c5dda7ee.tar.gz | |
Default to 8-character tabs in .editorconfig
This is the traditional standard used in BSD config files and so forth, so it makes sense to set this as the default and add specific exceptions for particular file types.
| -rw-r--r-- | .editorconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.editorconfig b/.editorconfig index 6257f81..1edd919 100644 --- a/.editorconfig +++ b/.editorconfig @@ -4,14 +4,15 @@ root = true end_of_line = lf insert_final_newline = true charset = utf-8 -indent_style = space -indent_size = 4 +indent_style = tab +indent_size = 8 max_line_length = 79 trim_trailing_whitespace = true insert_final_newline = true [Makefile] indent_style = tab +indent_size = 4 # Git commit message [COMMIT_EDITMSG] |