dotfiles/conf/editorconfig

42 lines
661 B
Plaintext
Raw Normal View History

2018-06-28 22:13:33 +00:00
################################
# EditorConfig config file #
################################
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[{*,.*}]
end_of_line = lf
insert_final_newline = true
2021-03-03 11:21:07 +00:00
trim_trailing_whitespace = true
2018-06-28 22:13:33 +00:00
indent_style = space
indent_size = 2
2021-03-27 16:02:24 +00:00
max_line_length = off
2018-06-28 22:13:33 +00:00
charset = utf-8
[{Makefile,makefile,*.mk}]
indent_style = tab
[*.md]
indent_style = space
2021-03-27 16:02:24 +00:00
max_line_length = 100
2018-06-28 22:13:33 +00:00
2021-05-05 19:59:55 +00:00
[mutt-*,neomutt-*]
max_line_length = 72
2021-03-03 11:21:07 +00:00
[*.py]
indent_style = space
indent_size = 4
max_line_length = 79
2018-06-28 22:13:33 +00:00
[*.sh]
2021-03-03 11:21:07 +00:00
indent_style = space
2018-06-28 22:13:33 +00:00
max_line_length = 0
2021-03-03 11:21:07 +00:00
[*.vim]
indent_style = space
max_line_length = 0