From 9062edd1d3bdbd321aa645c45e820504456018df Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Mon, 24 Nov 2014 23:45:00 +0100 Subject: Fix .editorconfig It seems that the vim plugin doesn't support globs in braces. --- .editorconfig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.editorconfig') 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 -- cgit v1.2.3