spacemacs/layers/+readers/dash/packages.el

63 lines
2 KiB
EmacsLisp
Raw Normal View History

;;; packages.el --- Dash Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;; see conditional package inclusion
(defconst dash-packages
'(
(dash-at-point :toggle (spacemacs/system-is-mac))
(helm-dash :requires helm)
(counsel-dash :requires ivy)
(zeal-at-point :toggle (or (spacemacs/system-is-linux)
(spacemacs/system-is-mswindows)))))
(defun dash/init-helm-dash ()
(use-package helm-dash
:defer t
:init (progn
(spacemacs/declare-prefix "arz" "zeal/dash docs")
(spacemacs/set-leader-keys
"azh" 'helm-dash-at-point
"azH" 'helm-dash))
:config (when dash-autoload-common-docsets
(dash//activate-package-docsets dash-docs-docset-newpath))))
2016-06-20 07:13:20 +00:00
(defun dash/init-counsel-dash ()
(use-package counsel-dash
:defer t
:init (progn
(spacemacs/declare-prefix "arz" "zeal/dash docs")
(spacemacs/set-leader-keys
"arzh" 'counsel-dash-at-point
"arzH" 'counsel-dash))
:config (when dash-autoload-common-docsets
(dash//activate-package-docsets dash-docs-docset-newpath))))
2015-01-14 06:54:44 +00:00
(defun dash/init-dash-at-point ()
(use-package dash-at-point
:defer t
:init (progn
(spacemacs/declare-prefix "arz" "zeal/dash docs")
(spacemacs/set-leader-keys
"arzd" 'dash-at-point
"arzD" 'dash-at-point-with-docset))))
(defun dash/init-zeal-at-point ()
(use-package zeal-at-point
:defer t
:init (progn
(spacemacs/declare-prefix "arz" "zeal/dash docs")
(spacemacs/set-leader-keys
"arzd" 'zeal-at-point
"arzD" 'zeal-at-point-set-docset))
:config
2019-12-05 12:24:12 +00:00
;; This lets users search in multiple docsets
(add-to-list 'zeal-at-point-mode-alist '(web-mode . "html,css,javascript"))))