aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Linskey2026-05-22 03:36:52 -0400
committerBenjamin Linskey2026-05-24 01:22:56 -0400
commit74fb73e0a45d3909d22dd06c1a97f713c5dda7ee (patch)
tree239a84952d0d792603cfbd592ac68f582cdd0408
parent434ec14de2f3569d663a16f580f2963cc8b32656 (diff)
downloaddotfiles-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--.editorconfig5
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]