aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/init.el b/init.el
index 0c83c86..ad57f29 100644
--- a/init.el
+++ b/init.el
@@ -709,3 +709,19 @@
709;; --------------------------------- 709;; ---------------------------------
710 710
711(defalias 'yes-or-no-p 'y-or-n-p) 711(defalias 'yes-or-no-p 'y-or-n-p)
712
713
714;; ---------------------------------
715;; Improved Help buffer
716;; --------------------
717;; Helpful provides a more
718;; informative Help buffer.
719;; ---------------------------------
720
721(use-package helpful
722 :straight t
723 :bind (("C-h f" . helpful-callable)
724 ("C-h k" . helpful-key)
725 ("C-h p" . helpful-at-point)
726 ("C-h v" . helpful-variable)
727 ("C-h x" . helpful-command)))