Compare commits

...

2 commits

Author SHA1 Message Date
a618a4f31d c: Remove the max line length 2024-10-15 14:17:39 +02:00
3acff166fb base: Fix wrong comment 2024-10-15 14:16:40 +02:00
2 changed files with 1 additions and 6 deletions

View file

@ -20,7 +20,7 @@
;; syntax coloring
(global-font-lock-mode t)
;; syntax coloring
;; show end of fill-column length
(global-display-fill-column-indicator-mode t)
;; paren matching

View file

@ -1,8 +1,3 @@
;; 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)))