summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2017-05-22 15:29:35 +0200
committerAlan Pearce2017-05-22 15:29:35 +0200
commit7235841ea4cd6477ffe414a9065bf4e99bd05c1d (patch)
treea448682937ede92d488dac784e9436c796ebd29a /emacs
parenta4598d8f46876743549f31c3582e3209da8991ec (diff)
downloaddotfiles-7235841ea4cd6477ffe414a9065bf4e99bd05c1d.tar.lz
dotfiles-7235841ea4cd6477ffe414a9065bf4e99bd05c1d.tar.zst
dotfiles-7235841ea4cd6477ffe414a9065bf4e99bd05c1d.zip
Emacs: Load flycheck-flow after js2-mode
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org1
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index c7935c1..90aef78 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -1727,6 +1727,7 @@ On-the-fly error checking in programming modes?  Yes please.
 
 #+BEGIN_SRC emacs-lisp
 (use-package flycheck-flow
+  :after js2-mode
   :config (progn
             (flycheck-add-next-checker 'javascript-eslint 'javascript-flow)))
 #+END_SRC