remove calls to general and general itself

This commit is contained in:
Peter Tillemans 2025-02-02 22:30:13 +01:00
parent 0e190fb9fb
commit dfc617a4b0

View file

@ -194,7 +194,7 @@ then load it.
Needs to load early so the ~:general~ keyword is available for ~use-package~.
#+BEGIN_SRC emacs-lisp
#+BEGIN_SRC emacs-lisp :tangle no
(use-package general :ensure t :demand t)
#+END_SRC
@ -1201,10 +1201,6 @@ behind it.
avy-goto-word-1-above
avy-goto-word-1-below
avy-goto-word-or-subword-1)
:general
(:states 'normal
"<leader> j j" #'avy-goto-char-timer
"<leader> j w" #'avy-goto-word-0)
:bind
(("C-:" . avy-goto-char-timer)
("M-g w" . avy-goto-word-0)
@ -1223,7 +1219,6 @@ Avy is supported by evil and setup in the *evil-integration* package.
** Command Log Mode
Sometimes it is useful to check what the fingers were up to when some
surprising sequence of events happened. Command Log Mode is a package
that records all the commands that are executed in the buffer and
provides a way to replay them.
@ -2413,8 +2408,7 @@ gicrisf has [[https://github.com/gicrisf/ox-zola][created a package]] to export
:after (ox-hugo)
:config
(require 'ox-hugo)
:general
("<leader> o z" 'ox-zola-export-wim-to-md))
)
#+END_SRC
#+RESULTS:
@ -3092,7 +3086,7 @@ Indicates the ~init.el~ file is provided by and ends here:
#+END_SRC
** DONE Decide about general keybindings.
CLOSED: [2025-01-20 Mon 10:28]
SCHEDULED: <2025-02-02 zo>
The *general* package offers enhanced support for *evil* keybindings,
notably it integrates with *use-package* to define keybindings which
will load the package if not loaded yet.