Enable flycheck in emacs lisp mode

This commit is contained in:
Tom Willemse 2016-11-04 19:38:54 +01:00
parent eae7bf62ae
commit 028bbd2a7f

View file

@ -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