1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
root = true
[*]
# please only ever use utf-8
charset = utf-8
; C and friends
[**.{c,cpp,h,hh,m,mm}]
# indent 4 spaces, BSD-style
indent_style = space
indent_size = 4
indent_brace_style = BSD
## let git handle proper EOL
#end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 80
#continuation_indent_size = 4
spaces_around_operators = true
; applies only to Makefiles
[makefile]
indent_style = tab
tab_width = 4
[**.am]
indent_style = tab
tab_width = 4
[**.tcl]
indent_style = space
indent_size = 4
#continuation_indent_size = 8
#curly_bracket_next_line = false
|