13 lines
401 B
EmacsLisp
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
|