15 lines
365 B
EmacsLisp
15 lines
365 B
EmacsLisp
;; Emacs has fanstastic built-in help features, but they could be more convenient
|
|
|
|
(use-package info
|
|
:straight (:type built-in)
|
|
:config
|
|
(evil-collection-info-setup))
|
|
|
|
(use-package helpful
|
|
:general
|
|
([remap describe-function] #'helpful-callable)
|
|
([remap describe-variable] #'helpful-variable)
|
|
([remap describe-key] #'helpful-key))
|
|
|
|
(provide 'init-help)
|