From bc4a59e36cbdf26861fee83594f1862aab46ffd7 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sat, 8 Jun 2024 20:36:14 +0200 Subject: [PATCH] feat: helpful package --- init.el | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/init.el b/init.el index fe5b8c5..1fc4042 100644 --- a/init.el +++ b/init.el @@ -1,14 +1,6 @@ -; use elpaca.el for package management -;; -;; load envs (exec-path-from-shell) -;; -;; lsp-mode? or eglot ;; C, C++ -;; Rust ;; VHDL, Verilog -;; Nix ;; Latex + templates -;; flycheck ;; pdf tools (add-to-list 'load-path (locate-user-emacs-file "lisp/")) @@ -403,7 +395,17 @@ '(read-only t cursor-intangible t face minibuffer-prompt))) ;; Help -;; TODO: helpful +(my-use-package helpful + :ensure t + :general + (my-leader + "d d" '(helpful-at-point)) + :bind ( + ([remap describe-function] . helpful-function) + ([remap describe-variable] . helpful-variable) + ([remap describe-key] . helpful-key) + ([remap describe-command] . helpful-command) + ([remap describe-symbol] . helpful-symbol))) ;; Projects (my-use-package projectile -- 2.48.1