blob: 687863811decc8f03dc46999def7e5de59232121 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
;; Per-directory local variables for GNU Emacs 23 and later.
((nil
. ((fill-column . 78)
(tab-width . 4)
(indent-tabs-mode . nil)
(show-trailing-whitespace . t)
(c-basic-offset . 2)
(ispell-check-comments . exclusive)
(ispell-local-dictionary . "american")
(safe-local-variable-values
'((c-default-style . "gnu")
(sentence-end-double-space . f)
(eval add-hook 'prog-mode-hook #'flyspell-prog-mode)
(flyspell-issue-message-flag . f) ; avoid messages for every word
)))))
|