summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2017-05-22 15:29:49 +0200
committerAlan Pearce2017-05-22 15:29:49 +0200
commit1ddfc50b1e25f757f6e40602d204b3a5ca7db91e (patch)
treef01a72e5bfde72bf177f7255e3453ad449cd3e3d /emacs
parent7235841ea4cd6477ffe414a9065bf4e99bd05c1d (diff)
downloaddotfiles-1ddfc50b1e25f757f6e40602d204b3a5ca7db91e.tar.lz
dotfiles-1ddfc50b1e25f757f6e40602d204b3a5ca7db91e.tar.zst
dotfiles-1ddfc50b1e25f757f6e40602d204b3a5ca7db91e.zip
Emacs: Install flow-minor-mode
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org9
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 90aef78..451806d 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -2047,6 +2047,15 @@ the project.  This will allows emacs to find their executables.
             (add-hook 'js2-mode-hook #'add-node-modules-path)))
 #+END_SRC
 
+**** Flow
+
+#+BEGIN_SRC emacs-lisp
+(use-package flow-minor-mode
+  :after js2-mode
+  :config (progn
+            (add-hook 'js2-mode-hook #'flow-minor-enable-automatically)))
+#+END_SRC
+
 **** Indium
 
 Javascript with an inferior node.js process and a debugger?  Awesome.