blob: 5e0914d94a056afcd49529532dd38685d127a240 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;;----------------------------------------------------------------------------
;; c++ Mode
;;----------------------------------------------------------------------------
(add-hook 'c++-mode-hook
(lambda ()
(setq indent-tabs-mode t)
(setq c-basic-offset 4)
(setq tab-width 4)))
;; This is my default indent.
;; After moving the cursor to line 2 I see that the relevant symbol is comment-intro.
(c-set-offset 'comment-intro 6)
(provide 'init-ccc)
|