summaryrefslogtreecommitdiff
path: root/emacs.d/lisp/setup-cc-styles.el
blob: 988b90083e0bae0c5a8573c315d9e100b2a8a208 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
;;; setup-cc-styles.el --- setup various programing styles

;; Copyright (C) 2010  Luo Jinghua

;; Author:  Luo Jinghua <sunmoon1997@gmail.com>
;; Keywords: c

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; 

;;; Code:

;;----------------------------------------------------------------------------
;;(setq tab-width 4)
;;(setq c-basic-offset 4)
;;(setq c-hanging-comment-ender-p nil)
;;(setq-default indent-tabs-mode nil)

;; define a new indentation style
(require 'cc-styles)
(add-to-list 'c-style-alist
             '("ljh"
               (indent-tabs-mode . nil)
	       (tab-width . 4)
	       (c-basic-offset . 4)
	       (c-comment-only-line-offset . 0)
	       (c-offsets-alist . ((statement-block-intro . +)
				   (knr-argdecl-intro . 0)
				   (substatement-open . 0)
				   (substatement-label . 0)
				   (label . 1)
				   (statement-cont . +)
				   (arglist-intro . c-lineup-arglist-intro-after-paren)
				   (arglist-close . c-lineup-arglist)
				   ))
	       )
	     )

(add-to-list 'c-style-alist
             '("tables"
	       (tab-width . 4)
               (indent-tabs-mode . t)
	       (c-basic-offset . 4)
	       (c-comment-only-line-offset . 0)
	       (c-offsets-alist . ((statement-block-intro . +)
				   (knr-argdecl-intro . 0)
				   (substatement-open . 0)
				   (substatement-label . 0)
				   (label . 1)
				   (statement-cont . +)
				   (inline-open 0)
				   (innamespace . 0)
				   (arglist-intro . c-lineup-arglist-intro-after-paren)
				   (arglist-close . c-lineup-arglist)
				   ))
	       )
	     )

(add-hook 'c-mode-common-hook
          (function
           (lambda ()
;;            (c-set-style "ljh")
	     (hl-line-mode t)
	     (linum-mode)
             )))
(add-hook 'c++-mode-hook
          (function
           (lambda ()
;;             (c-set-style "ljh")
	     (hl-line-mode t)
             )))

(add-hook 'python-mode-hook
          (function
           (lambda ()
	     (hl-line-mode t)
	     (linum-mode)
             )))

(defun gstreamer-c-mode ()
  "C mode with adjusted defaults for use with GStreamer."
  (interactive)
  (c-mode)
  (c-set-style "K&R")
  (setq c-basic-offset 2))

(setq auto-mode-alist (cons '("gst.*/.*\\.[ch]$" . gstreamer-c-mode)
                       auto-mode-alist))

(defun ljh-c-mode ()
  "C mode with adjusted defaults for myself."
  (interactive)
  (c-mode)
  (c-set-style "ljh"))
(setq auto-mode-alist (cons '("milkway.*/.*\\.[ch]$" . ljh-c-mode)
                       auto-mode-alist))

(provide 'setup-cc-styles)
;;; setup-cc-styles.el ends here