summaryrefslogtreecommitdiff
path: root/emacs/work_inits/05-helpful.el
diff options
context:
space:
mode:
authortslil clingman <>2022-08-09 08:16:16 +0200
committertslil clingman <tslil@posteo.de>2023-01-18 08:34:01 +0100
commit5301833eaced40b8f7a64a04f222aa1d5986c481 (patch)
tree0ae1683b0f36868388c1dee1224484b8ae9791ab /emacs/work_inits/05-helpful.el
parent0d57c812922b1578be2019d62500492ea7e6c616 (diff)
work inits
Diffstat (limited to 'emacs/work_inits/05-helpful.el')
-rw-r--r--emacs/work_inits/05-helpful.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/emacs/work_inits/05-helpful.el b/emacs/work_inits/05-helpful.el
new file mode 100644
index 0000000..f8ac203
--- /dev/null
+++ b/emacs/work_inits/05-helpful.el
@@ -0,0 +1,17 @@
+;; Time-stamp: <2019-01-26 12:49:57 (tslil@winslow)>
+
+(use-package helpful
+ :ensure t
+ :bind (("C-h f" . helpful-callable)
+ ("C-h v" . helpful-variable)
+ ("C-h k" . helpful-key)
+ ("C-h F" . helpful-function)
+ ("C-c h" . heplful-at-point))
+ :config
+ (advice-add #'describe-key :override #'helpful-key)
+ (advice-add #'describe-function :override #'helpful-callable)
+ (advice-add #'describe-variable :override #'helpful-variable)
+ (advice-add #'describe-symbol :override #'helpful-symbol))
+
+(use-package apropos
+ :config (setq apropos-do-all t))