mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
25 lines
558 B
EmacsLisp
25 lines
558 B
EmacsLisp
;;; siren-helpful.el --- jimeh's Emacs Siren: helpful configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for helpful.
|
|
|
|
;;; Code:
|
|
|
|
(use-package helpful
|
|
:bind
|
|
("C-h k" . helpful-key)
|
|
("C-h f" . helpful-callable)
|
|
("C-h v" . helpful-variable)
|
|
("C-h C" . helpful-command)
|
|
("C-h F" . helpful-function)
|
|
(:map emacs-lisp-mode-map
|
|
("C-c C-d" . helpful-at-point))
|
|
|
|
:custom
|
|
(helm-describe-function-function 'helpful-function)
|
|
(helm-describe-variable-function 'helpful-variable))
|
|
|
|
(provide 'siren-helpful)
|
|
;;; siren-helpful.el ends here
|