waybox/.editorconfig
Keith Bowes 8fa589a132 Relax 80 column limit
80 cols is a bit short. Linux uses a soft 100 limit, let's do the
same.
2022-12-09 18:27:22 -05:00

26 lines
497 B
INI

root = true
[{*.c,*.h}]
# Standard
charset = utf-8
end_of_line = lf
indent_style = tab
insert_final_newline = true
tab_width = 8
trim_trailing_whitespace = true
# Non-standard editor extensions
line_comment = /*
block_comment_start = /*
block_comment_end = */
curly_bracket_next_line = false
max_line_length = 100
spaces_around_brackets = outside
spaces_around_operators = true
[meson.build]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
trim_trailing_whitespace = true