aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d
diff options
context:
space:
mode:
authorGravatar Tom Willemse2018-08-13 22:12:19 -0700
committerGravatar Tom Willemse2018-08-14 23:07:52 -0700
commit91efacc116b7a543dbc5ed33ea7c066ae7a19928 (patch)
tree3edae591f90ab50d629bd8f7a7a6656682223584 /emacs/.emacs.d
parent517824b97f2a1a8513f9a5af5c4b718fa053ae09 (diff)
downloadnew-dotfiles-91efacc116b7a543dbc5ed33ea7c066ae7a19928.tar.gz
new-dotfiles-91efacc116b7a543dbc5ed33ea7c066ae7a19928.zip
Enable flycheck and fill-column-indicator in C
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r--emacs/.emacs.d/init.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index 99d6491..43cd3c5 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -310,6 +310,10 @@ ORIG-FUN is the function being wrapped, ARGS are the arguments specified"
(add-hook 'c-mode-hook 'electric-indent-local-mode)
+(add-hook 'c-mode-hook 'flycheck-mode)
+
+(add-hook 'c-mode-hook 'fci-mode)
+
(add-hook 'lisp-mode-hook 'paredit-mode)
(add-hook 'lisp-mode-hook 'rainbow-delimiters-mode)