#author("2024-12-23T14:49:29+00:00","default:yoya","yoya")
#author("2024-12-23T22:06:33+00:00","default:yoya","yoya")
[[Emacs]]
- [[MELPA]]
* C言語のindent設定 [#we17460a]
- 21.4.1 で動作する設定をやっと見つけた。他ver で動くかは知らない。
- .emacs (dotemacs)
-- http://d.hatena.ne.jp/gomi-box/20071022/1193036225 [#ee1cc484]
;; c-mode-hock(C言語のインデントの設定)
(defun my-c-mode-hook ()
(c-set-style "stroustrup")
(setq indent-tabs-mode nil)
(setq c-basic-offset 4)
(c-toggle-auto-state -1)
(define-key c-mode-base-map "\C-m" 'newline-and-indent))
(add-hook 'c-mode-hook 'my-c-mode-hook)
;; c++-mode-hock(C++のインデントの設定)
(defun my-c++-mode-hook ()
(c-set-style "stroustrup")
(setq indent-tabs-mode nil)
(setq c-basic-offset 4)
(c-toggle-auto-state -1)
(define-key c-mode-base-map "\C-m" 'newline-and-indent))
(add-hook 'c++-mode-hook 'my-c++-mode-hook)