aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-ccc.el
blob: bc3573ced8519236d98776efbf434e805800ee08 (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)