summaryrefslogtreecommitdiff
path: root/emacs/inits/05-helpful.el
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-01-02 16:43:43 +0000
committertslil <tslil@posteo.de>2026-01-02 16:44:24 +0000
commit2d6192e3bd58ea010a255841718f8444dfb6836d (patch)
tree59302aaa4790d750d361d8f4551dc1bb68dd64b8 /emacs/inits/05-helpful.el
parentc1cfc81aca065ee3342cb61dcd1d1072b1174c1f (diff)
[emacs] -{consult,vertico,orderless,consult-hoogle,helpful} replaced by icomplete-vertical and a few custom defns
Diffstat (limited to 'emacs/inits/05-helpful.el')
-rw-r--r--emacs/inits/05-helpful.el17
1 files changed, 0 insertions, 17 deletions
diff --git a/emacs/inits/05-helpful.el b/emacs/inits/05-helpful.el
deleted file mode 100644
index f8ac203..0000000
--- a/emacs/inits/05-helpful.el
+++ /dev/null
@@ -1,17 +0,0 @@
-;; 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))