;;; 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