diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-24 23:45:00 +0100 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-24 23:45:00 +0100 |
commit | 9062edd1d3bdbd321aa645c45e820504456018df (patch) | |
tree | ec4c3ad0925f08156a13c45e4206ee8b2ab51da7 /.editorconfig | |
parent | 6291b2340055acfc5487141af5c1adb76cdf0662 (diff) |
Fix .editorconfig
It seems that the vim plugin doesn't support globs in braces.
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index 946396e..ab11d40 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,7 +12,12 @@ trim_trailing_whitespace = true indent_style = space indent_size = 2 -[{*.c,Makefile}] +[*.{c,h}] +trim_trailing_whitespace = true +indent_style = tab +indent_size = 8 + +[Makefile] trim_trailing_whitespace = true indent_style = tab indent_size = 8 |