move frequent file/project ops together
This commit is contained in:
parent
33d97f85b2
commit
1b917c7666
1 changed files with 4 additions and 3 deletions
7
init.org
7
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)
|
||||
|
|
Loading…
Add table
Reference in a new issue