mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
16 lines
327 B
EmacsLisp
16 lines
327 B
EmacsLisp
;;; siren-dash-at-point.el --- jimeh's Emacs Siren: dash-at-point configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for dash-at-point.
|
|
|
|
;;; Code:
|
|
|
|
(use-package dash-at-point
|
|
:general
|
|
("C-c d" 'dash-at-point)
|
|
("C-c e" 'dash-at-point-with-docset))
|
|
|
|
(provide 'siren-dash-at-point)
|
|
;;; siren-dash-at-point.el ends here
|