gist/.editorconfig

26 lines
513 B
INI
Raw Permalink Normal View History

2023-02-12 14:53:52 +01:00
root = true
[*]
# Future: https://github.com/editorconfig/editorconfig/issues/89
# Handled by git when not set
2023-02-26 18:01:13 +01:00
end_of_line = lf
2023-02-12 14:53:52 +01:00
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
# Accessibility reasons. Vim: :%retab! (note also :set ts=4)
2023-02-26 18:01:13 +01:00
indent_style = space
2023-02-12 14:53:52 +01:00
#tab_width =
max_line_length = 78
[*.{markdown,md}]
trim_trailing_whitespace = false
[*.{tsv,tab}]
indent_style = tab
indent_size = tab
trim_trailing_whitespace = false
max_line_length = off
[*.tex]
max_line_length = unset