Compare commits

..

No commits in common. "a618a4f31d40cd65d84e3b70d41d1c8e2c1bbc1e" and "9ecedcd89b0f047d67d0e64f53f6b4261d025808" have entirely different histories.

2 changed files with 6 additions and 1 deletions

View file

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

View file

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