diff options
author | Alan Pearce | 2017-07-05 13:36:01 +0200 |
---|---|---|
committer | Alan Pearce | 2017-07-05 13:36:01 +0200 |
commit | 205ff22d5088491657d81c68942775f9b90d5ee0 (patch) | |
tree | ab65671d3c3c7822356d5fdda499ed824eae7739 /emacs/.emacs.d/init.org | |
parent | 967d4abeb9be21ed2d9f7dcb4025cc8f0dc61a82 (diff) | |
download | nixfiles-205ff22d5088491657d81c68942775f9b90d5ee0.tar.lz nixfiles-205ff22d5088491657d81c68942775f9b90d5ee0.tar.zst nixfiles-205ff22d5088491657d81c68942775f9b90d5ee0.zip |
Emacs: Diminish some Javascript minor modes
Diffstat (limited to 'emacs/.emacs.d/init.org')
-rw-r--r-- | emacs/.emacs.d/init.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 97ddebc9..7833ac50 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -2225,6 +2225,7 @@ Instead, do this: #+BEGIN_SRC emacs-lisp (use-package indium + :diminish (indium-interaction-mode . "In") :config (progn (add-hook 'js2-mode-hook #'indium-interaction-mode))) #+END_SRC @@ -2245,7 +2246,7 @@ completions, besides other IDE-like things. #+BEGIN_SRC emacs-lisp (use-package tern - :commands ap/enable-tern + :diminish tern-mode :if (executable-find "tern") :defer 5 :config (progn |