First commit.

This commit is contained in:
2022-01-09 21:19:46 +01:00
commit df36844dcc
107 changed files with 6565 additions and 0 deletions

12
lisp/utilities/dash.el Normal file
View File

@@ -0,0 +1,12 @@
;;; 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