aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-02-27 10:42:53 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-02-27 10:42:53 -0500
commit3e0fab6b7ca3ece5ffe8cf07cb80f4037c08e3f0 (patch)
tree5f602d01c338a14ebaa06072ba95e3c3ea21badb
parentb6170db1a1c6cec55b0cd0075b54b8370650aa14 (diff)
parentac1f941edb461991d8405f76d62aefa98a572924 (diff)
downloadrneovim-3e0fab6b7ca3ece5ffe8cf07cb80f4037c08e3f0.tar.gz
rneovim-3e0fab6b7ca3ece5ffe8cf07cb80f4037c08e3f0.tar.bz2
rneovim-3e0fab6b7ca3ece5ffe8cf07cb80f4037c08e3f0.zip
Merge pull request #4332 from Jun-T/editorconfig
.editorconfig
-rw-r--r--.editorconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000000..b08a27f2a2
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,12 @@
+root = true
+
+[*]
+indent_style = space
+indent_size = 2
+end_of_line = lf
+insert_final_newline = true
+charset = utf_8
+
+[Makefile]
+indent_style = tab
+tab_width = 4