X-Git-Url: https://git.cworth.org/git?p=notmuch;a=blobdiff_plain;f=.dir-locals.el;h=b3ddffe8ad15cf91ca68938e58264c60c239980c;hp=cbdb1f9790f9c30419dca5d60aa1c376a3a5994f;hb=HEAD;hpb=bab77c90844eede014fcf79414bab38add83a3b9 diff --git a/.dir-locals.el b/.dir-locals.el index cbdb1f97..b3ddffe8 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,7 +1,25 @@ -; emacs local configuration settings for notmuch source -; surmised by dkg on 2010-11-23 13:43:18-0500 +;; emacs local configuration settings for notmuch source +;; surmised by dkg on 2010-11-23 13:43:18-0500 +;; amended by amdragon on 2011-06-06 -((c-mode . ((indent-tabs-mode . t) - (tab-width . 8) - (c-basic-offset . 4) - (c-file-style . "linux")))) +((c-mode + (indent-tabs-mode . t) + (tab-width . 8) + (c-basic-offset . 4) + (c-file-style . "linux")) + (c++-mode + (indent-tabs-mode . t) + (tab-width . 8) + (c-basic-offset . 4) + (c-file-style . "linux")) + (emacs-lisp-mode + (indent-tabs-mode . t) + (tab-width . 8)) + (sh-mode + (indent-tabs-mode . t) + (tab-width . 8) + (sh-basic-offset . 4) + (sh-indentation . 4)) + (nil + (fill-column . 70)) + )