dotfiles-emacs/.emacs.d/config/c.el
finga 5a55a3f3f3 Remove obvious and add meaningful comments
Remove the obvious and add some meaningful comments.
2024-05-28 17:03:24 +02:00

8 lines
208 B
EmacsLisp

;; set c style to linux and indention to 2
(setq c-default-style "linux"
c-basic-offset 2)
;; set max line length to 100
(add-hook 'c-mode-hook
(lambda ()
(set-fill-column 100)))