From: Michael Stapelberg Date: Wed, 13 Sep 2017 16:38:27 +0000 (+0200) Subject: Add .editorconfig (see editorconfig.org) (#2943) X-Git-Tag: 4.15~92 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=100fad741fe79a2a0ea8364d6b70f57f6d0c17a7;p=i3%2Fi3 Add .editorconfig (see editorconfig.org) (#2943) This file uses the same settings which we currently have in our vim modeline, but can be picked up by many different editors without having to add and maintain editor-specific modelines in all of our source files. --- diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..c25745f8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +[*.{c,h}] +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true