pinwheel: Fix leader-key in emacs

This commit is contained in:
Alexander Heldt
2023-10-07 12:25:14 +02:00
parent 8fe4839778
commit 378a49dec0

View File

@@ -335,21 +335,19 @@ Setup prefix for keybindings.
(general-create-definer alex/keybindings
:keymaps '(normal insert visual emacs)
:prefix ",")
:prefix ","
:global-prefix "C-SPC")
#+END_SRC
** Quick buffer save
#+BEGIN_SRC emacs-lisp
(alex/keybindings
"," '(save-buffer :save-buffer "save"))
#+END_SRC
** Cleanup whitespace
#+BEGIN_SRC emacs-lisp
(alex/keybindings
"w" '(whitespace-cleanup :which-key "whitespace cleanup"))
#+END_SRC
** Scale text
#+BEGIN_SRC emacs-lisp
(use-package hydra)