diff options
author | Alan Pearce | 2014-08-16 09:59:23 +0100 |
---|---|---|
committer | Alan Pearce | 2014-08-16 09:59:23 +0100 |
commit | 20337e48126635041453c187adfe602dca230c12 (patch) | |
tree | a8253a3ea920322af373ac2213c0c98eaa9b5473 | |
parent | 29135a8f93d789dbb2b1511e3d1ea0d6c55c1744 (diff) | |
download | nixfiles-20337e48126635041453c187adfe602dca230c12.tar.lz nixfiles-20337e48126635041453c187adfe602dca230c12.tar.zst nixfiles-20337e48126635041453c187adfe602dca230c12.zip |
Emacs: Eager-load helm-dash configuration
-rw-r--r-- | tag-emacs/emacs.d/init.el | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index febe4423..1877358c 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -329,16 +329,16 @@ (req-package helm-dash :defer t - :config (progn - (defun ap/create-helm-dash-hook (docsets) - (lambda () - (when (require 'helm-dash nil :noerror) - (setq-local helm-dash-docsets (if (listp docsets) docsets (list docsets)))))) - (add-hook 'ansible-mode-hook (ap/create-helm-dash-hook "Ansible")) - (add-hook 'php-mode-hook (ap/create-helm-dash-hook '("PHP" "Symfony"))) - (add-hook 'twig-mode-hook (ap/create-helm-dash-hook '("Twig"))) - (add-hook 'markdown-mode-hook (ap/create-helm-dash-hook '("Markdown"))) - (add-hook 'saltstack-mode-hook (ap/create-helm-dash-hook '("SaltStack"))))) + :init (progn + (defun ap/create-helm-dash-hook (docsets) + (lambda () + (when (require 'helm-dash nil :noerror) + (setq-local helm-dash-docsets docsets)))) + (add-hook 'ansible-mode-hook (ap/create-helm-dash-hook '("Ansible"))) + (add-hook 'php-mode-hook (ap/create-helm-dash-hook '("PHP" "Symfony"))) + (add-hook 'twig-mode-hook (ap/create-helm-dash-hook '("Twig"))) + (add-hook 'markdown-mode-hook (ap/create-helm-dash-hook '("Markdown"))) + (add-hook 'saltstack-mode-hook (ap/create-helm-dash-hook '("SaltStack"))))) (req-package which-func :init (which-function-mode) |