Add .editorconfig.

This commit is contained in:
Whovian NTSN 2024-11-12 19:01:36 -05:00
parent d85689eb28
commit bb9f77aa35

18
.editorconfig Normal file
View file

@ -0,0 +1,18 @@
# EditorConfig configuration for my config -- See http://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file, utf-8 charset
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
# tab_width defaults to set indent_size
# Set indent to two spaces for Nix files.
[*.nix]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true