@peccul is peccu

(love peccu '(emacs lisp cat outdoor bicycle mac linux coffee))

switch caseのcaseの位置を揃える in Emacs

switch caseのcaseの位置がswitchと揃うのが気に食わなかったので、設定を変えた。

;; set this in all c-based programming modes
(add-hook 'c-mode-common-hook
          (lambda ()
             (c-set-offset 'case-label '+)))

stackoverflow.com