Files
dotemacs/lisp/utilities/dash.el
2022-01-09 21:19:46 +01:00

13 lines
401 B
EmacsLisp

;;; dash.el --- Dash documentation reading -*- lexical-binding: t; -*-
;;; Commentary: This package provides an elisp interface to query and show documenation using Dash docsets.
;;; Code: https://github.com/dash-docs-el/dash-docs
(use-package dash-docs
:if (executable-find "sqlite3")
:bind-wrap
((:key :doc :reference) . helm-dash-at-point))
(provide 'utilities/dash)
;;; dash.el ends here