Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[PATCH] Add .editorconfig file



Add .editorconfig file following http://editorconfig.org/ to specify
some formatting settings.  Plugins to honor this file are available for
many text editors.
---
 .editorconfig |    9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 .editorconfig

diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..58421c0
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,9 @@
+root = true  # Top-most editorconfig file
+
+[*]
+end_of_line = lf
+tab_width   = 8
+indent_size = 2
+
+[*.[ch]]
+indent_size = 4
-- 
1.7.10.4



Messages sorted by: Reverse Date, Date, Thread, Author