Emacs : file jump, key bindings

This commit is contained in:
2022-05-24 11:38:02 +09:00
parent 53111519ec
commit 0ce5bba514

View File

@ -412,6 +412,15 @@ capture was not aborted."
(evil-collection-define-key 'normal 'dired-mode-map (evil-collection-define-key 'normal 'dired-mode-map
"H" 'dired-hide-dotfiles-mode)) "H" 'dired-hide-dotfiles-mode))
(map! :leader (map! :leader
;; file bind
:desc "Org Agenda Common"
"oac" '(lambda () (interactive) (find-file (expand-file-name "~/org/agenda/agenda.org")))
:desc "dOtfiles"
"fo" '(:ignore t)
:desc "doom config.el"
"foc" '(lambda () (interactive) (find-file (expand-file-name "~/.doom.d/config.el")))
:desc "doom package.el"
"fop" '(lambda () (interactive) (find-file (expand-file-name "~/.doom.d/package.el")))
;; Eshell ;; Eshell
:desc "eshell" :desc "eshell"
"e" '(:ignore t) "e" '(:ignore t)