aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-11-04 19:38:54 +0100
committerGravatar Tom Willemse2016-11-04 19:38:54 +0100
commit028bbd2a7f13627adcbc8ab2d9861634f58ed1b7 (patch)
treea1b2e784acfa29b296517e0db1f6d3f64548def1 /emacs
parenteae7bf62ae76b20ba10b4a7f99115a5f6c44d137 (diff)
downloadnew-dotfiles-028bbd2a7f13627adcbc8ab2d9861634f58ed1b7.tar.gz
new-dotfiles-028bbd2a7f13627adcbc8ab2d9861634f58ed1b7.zip
Enable flycheck in emacs lisp mode
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init/oni-emacs-lisp-mode-init.org6
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init/oni-emacs-lisp-mode-init.org b/emacs/.emacs.d/init/oni-emacs-lisp-mode-init.org
index 48d9f41..14a2a99 100644
--- a/emacs/.emacs.d/init/oni-emacs-lisp-mode-init.org
+++ b/emacs/.emacs.d/init/oni-emacs-lisp-mode-init.org
@@ -18,3 +18,9 @@ Enable company mode to help complete long symbols and such.
#+BEGIN_SRC emacs-lisp
(add-hook 'emacs-lisp-mode-hook 'company-mode)
#+END_SRC
+
+Enable flycheck mode to help me avoid errors.
+
+#+BEGIN_SRC emacs-lisp
+ (add-hook 'emacs-lisp-mode-hook 'flycheck-mode)
+#+END_SRC