summaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2014-11-24 23:45:00 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2014-11-24 23:45:00 +0100
commit9062edd1d3bdbd321aa645c45e820504456018df (patch)
treeec4c3ad0925f08156a13c45e4206ee8b2ab51da7 /.editorconfig
parent6291b2340055acfc5487141af5c1adb76cdf0662 (diff)
Fix .editorconfig
It seems that the vim plugin doesn't support globs in braces.
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig7
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