summaryrefslogtreecommitdiff
path: root/lisp/cpp.el
blob: 79d31faf924a5dc04673ec4296e12b3036e526bf (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
28
29

;;; 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
  (c-set-offset 'brace-list-open 0)

  (setq tab-stop-list '(4 8 12 16 20 24 28 32 36 40 44 48 52 56 60))
  (setq tab-width 4)
  ;; (electric-indent-mode 0)
  )

; TODO: I am not the bigest fan of cmake-ide any more. Let's see how easy that is.
;(require 'cmake-ide)
(require 'eglot)
															;(cmake-ide-setup)

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

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

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