# How to indent goto labels
# >0 : absolute column where 1 is the leftmost column
# <=0 : subtract from brace indent
-indent_label = 1 # number
+indent_label = 2 # number
# Same as indent_label, but for access specifiers that are followed by a colon
indent_access_spec = 1 # number
# 0=Part of the type 'void * foo;'
# 1=Part of the variable 'void *foo;'
# 2=Dangling 'void *foo;'
-align_var_def_star_style = 1 # number
+align_var_def_star_style = 0 # number
# How to align the '&' in variable definitions.
# 0=Part of the type
align_enum_equ_thresh = 0 # number
# The span for aligning struct/union (0=don't align)
-align_var_struct_span = 1 # number
+align_var_struct_span = 3 # number
# The threshold for aligning struct/union member definitions (0=no limit)
align_var_struct_thresh = 0 # number
# The gap for aligning struct/union member definitions
-align_var_struct_gap = 0 # number
+align_var_struct_gap = 8 # number
# The span for aligning struct initializer values (0=don't align)
align_struct_init_span = 0 # number
# 0: Don't mix them at all
# 1: align the open paren with the types
# 2: align the function type name with the other type names
-align_typedef_func = 0 # number
+align_typedef_func = 2 # number
# Controls the positioning of the '*' in typedefs. Just try it.
# 0: Align on typedef type, ignore '*'
nl_func_def_empty = ignore # ignore/add/remove/force
# Add or remove newline between function signature and '{'
-nl_fdef_brace = add # ignore/add/remove/force
+nl_fdef_brace = ignore # ignore/add/remove/force
# Whether to put a newline after 'return' statement
nl_after_return = false # false/true