c: Remove the max line length

This commit is contained in:
finga 2024-10-15 14:17:39 +02:00
parent 3acff166fb
commit a618a4f31d

View file

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