notmuch/.dir-locals.el
Tomi Ollila ce3513261d .dir-locals.el: changed one-char comment prefix '; ' to two; '; ; '
Like in emacs/*.el two comment chars (;;) is required so that
(indent-region) doesn't break indentation.
2012-01-22 08:41:37 -04:00

25 lines
547 B
EmacsLisp

;; 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"))
(emacs-lisp-mode
(indent-tabs-mode . t)
(tab-width . 8))
(shell-mode
(indent-tabs-mode . t)
(tab-width . 8)
(sh-basic-offset . 4)
(sh-indentation . 4))
(nil
(fill-column . 70))
)