From 70605994d0454573726a65ced017ca65ad636f29 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 28 Jul 2022 18:09:51 +0100 Subject: (Emacs)+info configuration Info is Emacs' documentation system, and a GNU binary that tried to replace 'man' (to limited success) --- Emacs/.config/emacs/config.org | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'Emacs/.config/emacs/config.org') diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 32e18ee..7ecf3af 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -1027,6 +1027,20 @@ focus on a buffer. (:keymaps 'isearch-mode-map "M-s" #'isearch-repeat-forward)) #+end_src +** Info +#+begin_src emacs-lisp +(use-package info + :straight nil + :general + (general-def + :states '(normal motion) + :keymaps 'Info-mode-map + "h" #'evil-backward-char + "k" #'evil-previous-line + "l" #'evil-forward-char + "H" #'Info-history-back + "L" #'Info-history-forward)) +#+end_src ** Display line numbers I don't like using this mode by default, but I'd like to configure it if possible. Line numbers are a necessary evil a lot of times, and -- cgit v1.2.3-13-gbd6f