emacs: BREAKING stop using use-package for prot-prefix

This commit is contained in:
Protesilaos Stavrou 2025-11-01 11:03:24 +02:00
parent 564f5f075d
commit af5fa0cd68
No known key found for this signature in database
GPG key ID: 99BD6459CD5CA3EA
2 changed files with 10 additions and 10 deletions

View file

@ -202,11 +202,11 @@
"C-x C-;" #'prot-comment-timestamp-keyword))
;;;; Prefix keymap (prot-prefix.el)
(use-package prot-prefix
:ensure nil
:bind-keymap
(("<insert>" . prot-prefix)
("C-z" . prot-prefix)))
(prot-emacs-configure
(require 'prot-prefix)
(prot-emacs-keybind global-map
"<insert>" #'prot-prefix
"C-z" #'prot-prefix))
(use-package recentf
:ensure nil

View file

@ -2892,11 +2892,11 @@ configurable amount of time ([[#h:ddb1070d-2f91-4224-ad43-ef03f038f787][The =pro
#+begin_src emacs-lisp :tangle "prot-emacs-modules/prot-emacs-essentials.el"
;;;; Prefix keymap (prot-prefix.el)
(use-package prot-prefix
:ensure nil
:bind-keymap
(("<insert>" . prot-prefix)
("C-z" . prot-prefix)))
(prot-emacs-configure
(require 'prot-prefix)
(prot-emacs-keybind global-map
"<insert>" #'prot-prefix
"C-z" #'prot-prefix))
#+end_src
*** The =prot-emacs-essentials.el= configuration to track recently visited files (~recentf-mode~)