Compare commits
No commits in common. "a618a4f31d40cd65d84e3b70d41d1c8e2c1bbc1e" and "9ecedcd89b0f047d67d0e64f53f6b4261d025808" have entirely different histories.
a618a4f31d
...
9ecedcd89b
2 changed files with 6 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
||||||
;; syntax coloring
|
;; syntax coloring
|
||||||
(global-font-lock-mode t)
|
(global-font-lock-mode t)
|
||||||
|
|
||||||
;; show end of fill-column length
|
;; syntax coloring
|
||||||
(global-display-fill-column-indicator-mode t)
|
(global-display-fill-column-indicator-mode t)
|
||||||
|
|
||||||
;; paren matching
|
;; paren matching
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
;; 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)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue