From: David Robillard Date: Wed, 16 Mar 2011 16:37:35 +0000 (+0000) Subject: Add emacs directory local configuration to tame naughty editors and hopefully end... X-Git-Tag: 3.0-alpha5~345 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=bea03da826d0808b23f2f088c62e910b80e65404;p=ardour.git Add emacs directory local configuration to tame naughty editors and hopefully end this tab nightmare. git-svn-id: svn://localhost/ardour2/branches/3.0@9159 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000000..e0bca42455 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,8 @@ +((nil . ((fill-column . 79))) + (c-mode . ((indent-tabs-mode . t) + (c-file-style . "linux") + (c-label-minimum-indentation . 0) + (c-hanging-braces-alist . '((namespace-open after) + (substatement-open after) + (brace-list-open after))))) + (python-mode . ((indent-tabs-mode . nil))))