mirror of
https://github.com/protesilaos/dotfiles.git
synced 2026-09-10 07:16:20 -04:00
emacs: BREAKING stop using use-package for prot-prefix
This commit is contained in:
parent
564f5f075d
commit
af5fa0cd68
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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~)
|
||||
|
|
|
|||
Loading…
Reference in a new issue