summaryrefslogtreecommitdiff
path: root/lisp/cpp.el
blob: 5bb04a84c935e6e10cf4a71ee25298dca1ffef36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

;;; Code:
(defun setup-c()
  "Set up c common mode."
  (setq c++-tab-always-indent 0)
  (setq c-basic-offset 4)                  ;; Default is 2
  (setq c-indent-level 4)                  ;; Default is 2

  (setq tab-stop-list '(4 8 12 16 20 24 28 32 36 40 44 48 52 56 60))
  (setq tab-width 4)
  (c-set-offset 'brace-list-open 0)
  (c-set-offset 'substatement-open 0)
  (c-set-offset 'arglist-intro '+)
  (c-set-offset 'arglist-cont-non-empty '+)
  (c-set-offset 'argslist-close '+)
  )

(add-hook 'c-mode-common-hook 'setup-c)

(defun create-cpp-class()
  "Create a cpp class."
  (interactive "Enter the name of the class: ")
  )


(provide 'cpp)
;;; cpp.el ends here