From 1b917c7666cb3b3f2fa09dc24923357bcfbd26a4 Mon Sep 17 00:00:00 2001 From: Peter Tillemans Date: Thu, 17 Jul 2025 12:14:00 +0200 Subject: [PATCH] move frequent file/project ops together --- init.org | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/init.org b/init.org index 68682fc..4796c57 100644 --- a/init.org +++ b/init.org @@ -739,8 +739,6 @@ See the excellent documentation on [[https://github.com/minad/consult][Minad's c ** Evil Vim Keybindings #+BEGIN_SRC emacs-lisp - (keymap-global-set "C-c v" vc-prefix-map) - (keymap-global-set "C-c p" project-prefix-map) (when snm-enable-evil ;; load evil (use-package evil @@ -775,9 +773,12 @@ See the excellent documentation on [[https://github.com/minad/consult][Minad's c )) #+END_SRC -** Frequently used File Operations +** Frequently used File/Project Operations #+BEGIN_SRC emacs-lisp + (keymap-global-set "C-c v" vc-prefix-map) + (keymap-global-set "C-c p" project-prefix-map) + (recentf-mode 1) ;; enable recent file tracking (keymap-global-set "C-c f f" #'find-file) (keymap-global-set "C-c f o" #'recentf)