diff options
author | Alan Pearce | 2017-05-22 15:29:49 +0200 |
---|---|---|
committer | Alan Pearce | 2017-05-22 15:29:49 +0200 |
commit | 1ddfc50b1e25f757f6e40602d204b3a5ca7db91e (patch) | |
tree | f01a72e5bfde72bf177f7255e3453ad449cd3e3d | |
parent | 7235841ea4cd6477ffe414a9065bf4e99bd05c1d (diff) | |
download | nixfiles-1ddfc50b1e25f757f6e40602d204b3a5ca7db91e.tar.lz nixfiles-1ddfc50b1e25f757f6e40602d204b3a5ca7db91e.tar.zst nixfiles-1ddfc50b1e25f757f6e40602d204b3a5ca7db91e.zip |
Emacs: Install flow-minor-mode
-rw-r--r-- | emacs/.emacs.d/init.org | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 90aef783..451806da 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. |