From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14700 invoked by alias); 29 Sep 2012 14:23:27 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 30712 Received: (qmail 27470 invoked from network); 29 Sep 2012 14:23:23 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_PASS, UNPARSEABLE_RELAY autolearn=ham version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at schrab.com designates 50.116.43.67 as permitted sender) From: Aaron Schrab To: zsh-workers@zsh.org Subject: [PATCH] Add .editorconfig file Date: Sat, 29 Sep 2012 10:23:15 -0400 Message-Id: <1348928595-23928-1-git-send-email-aaron@schrab.com> X-Mailer: git-send-email 1.7.10.4 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