dotfiles/.editorconfig

43 lines
625 B
INI

root = true
[*]
charset = utf-8
end_of_line = lf
; insert_final_newline = true
; trim_trailing_whitespace = true
indent_style=space
indent_size=4
[*.py]
indent_style = space
indent_size = 4
[*.go]
indent_style = tab
[*.md]
trim_trailing_whitespace = false
insert_final_newline = true
indent_style = space
indent_size = 2
[*.yml]
indent_style = space
indent_size = 2
[*.typ]
indent_style = space
indent_size = 2
[*.fish]
indent_style = space
indent_size = 4
[*.tex]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
[*.{sty,cls,bib}]
indent_style = space
indent_size = 2