lyx_mirror/development/coding/emacs

30 lines
623 B
Plaintext
Raw Normal View History

2015-10-01 21:06:01 +00:00
Sample configuration to match the coding style in use.
In .emacs:
(custom-set-variables
'(c-basic-indent 4)
'(safe-local-variable-values
(quote
((c-set-offset
(quote innamespace)
0)
(c-set-style . "CC-MODE"))))
)
;; no indent in namespace
(defun my-c-setup ()
(c-set-offset 'innamespace [0]))
(add-hook 'c++-mode-hook 'my-c-setup)
In .dir-local.el:
((nil . ((indent-tabs-mode . t)
(tab-width . 4)
(fill-column . 80)))
(c-mode . ((c-basic-offset . 4)
(c-set-style . "CC-MODE")))
(c++-mode . ((c-basic-offset . 4)
(c-set-style . "CC-MODE")))
)