summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--tag-emacs/emacs.d/init.org22
1 files changed, 12 insertions, 10 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 2e8f88b..00f06f5 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -988,15 +988,16 @@ helps to make documentation for other languages easier to access
     :defer 20
     :defines helm-dash-docsets
     :config (progn
-            (ap/create-helm-dash-hook nginx ("Nginx"))
-            (ap/create-helm-dash-hook ansible ("Ansible"))
-            (ap/create-helm-dash-hook php ("PHP" "Symfony"))
-            (ap/create-helm-dash-hook twig ("Twig"))
-            (ap/create-helm-dash-hook js2 ("JavaScript" "NodeJS" "jQuery" "Express"))
-            (ap/create-helm-dash-hook markdown ("Markdown"))
-            (ap/create-helm-dash-hook saltstack ("SaltStack"))
-            (ap/create-helm-dash-hook clojure ("Clojure"))
-            (ap/create-helm-dash-hook sql ("PostgreSQL" "MySQL"))))
+              (setq helm-dash-browser-func #'eww)
+              (ap/create-helm-dash-hook nginx ("Nginx"))
+              (ap/create-helm-dash-hook ansible ("Ansible"))
+              (ap/create-helm-dash-hook php ("PHP" "Symfony"))
+              (ap/create-helm-dash-hook twig ("Twig"))
+              (ap/create-helm-dash-hook js2 ("JavaScript" "NodeJS" "jQuery" "Express" "SailsJS" "Lo-Dash"))
+              (ap/create-helm-dash-hook markdown ("Markdown"))
+              (ap/create-helm-dash-hook saltstack ("SaltStack"))
+              (ap/create-helm-dash-hook clojure ("Clojure"))
+              (ap/create-helm-dash-hook sql ("PostgreSQL" "MySQL"))))
 #+END_SRC
 
 ** which-func
@@ -1024,8 +1025,9 @@ Popup keybindings following a prefix automatically.
 
 #+BEGIN_SRC emacs-lisp
   (use-package which-key
+    :diminish which-key-mode
     :config (progn
-              (which-key-mode)
+              (which-key-mode 1)
               (which-key-setup-side-window-right-bottom)))
 #+END_SRC