dotfiles/conf/editorconfig
2021-03-27 17:02:24 +01:00

39 lines
620 B
Plaintext

################################
# EditorConfig config file #
################################
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[{*,.*}]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
max_line_length = off
charset = utf-8
[{Makefile,makefile,*.mk}]
indent_style = tab
[*.md]
indent_style = space
max_line_length = 100
[*.py]
indent_style = space
indent_size = 4
max_line_length = 79
[*.sh]
indent_style = space
max_line_length = 0
[*.vim]
indent_style = space
max_line_length = 0