mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 08:01:35 +09:00
Emacs : Some shortcut added.
This commit is contained in:
@ -407,6 +407,7 @@ This makes nov to ugly
|
|||||||
"b B" '(ibuffer-list-buffers :which-key "IBuffer List Buffers")
|
"b B" '(ibuffer-list-buffers :which-key "IBuffer List Buffers")
|
||||||
"b K" '(kill-buffer :which-key "IBuffer Kill Buffers")
|
"b K" '(kill-buffer :which-key "IBuffer Kill Buffers")
|
||||||
;; Eshell
|
;; Eshell
|
||||||
|
"e" '(:ignore t :which-key "eshell")
|
||||||
"e h" '(counsel-esh-history :which "Kill history")
|
"e h" '(counsel-esh-history :which "Kill history")
|
||||||
"e s" '(eshell :which "run eshell")
|
"e s" '(eshell :which "run eshell")
|
||||||
;; Workspace
|
;; Workspace
|
||||||
@ -734,6 +735,7 @@ https://emacs.stackexchange.com/a/30691
|
|||||||
:after projectile
|
:after projectile
|
||||||
:config (counsel-projectile-mode))
|
:config (counsel-projectile-mode))
|
||||||
(ju/leader-key-def
|
(ju/leader-key-def
|
||||||
|
"p" '(:ignore t :which-key "Projectile")
|
||||||
"p." 'projectile-find-file
|
"p." 'projectile-find-file
|
||||||
"ps" 'projectile-switch-project
|
"ps" 'projectile-switch-project
|
||||||
"pg" 'consult-ripgrep
|
"pg" 'consult-ripgrep
|
||||||
@ -832,6 +834,7 @@ https://emacs.stackexchange.com/a/30691
|
|||||||
:commands (org-capture org-agenda)
|
:commands (org-capture org-agenda)
|
||||||
:hook (org-mode . efs/org-mode-setup)
|
:hook (org-mode . efs/org-mode-setup)
|
||||||
:config
|
:config
|
||||||
|
|
||||||
(setq org-todo-keywords
|
(setq org-todo-keywords
|
||||||
'((sequence "TODO(t)" "HOLD(h)" "|" "KILL(k)" "DONE(d)")))
|
'((sequence "TODO(t)" "HOLD(h)" "|" "KILL(k)" "DONE(d)")))
|
||||||
(setq org-ellipsis " ▾")
|
(setq org-ellipsis " ▾")
|
||||||
@ -886,6 +889,12 @@ https://emacs.stackexchange.com/a/30691
|
|||||||
;; Do not ask when run code block
|
;; Do not ask when run code block
|
||||||
(setq org-confirm-babel-evaluate nil)
|
(setq org-confirm-babel-evaluate nil)
|
||||||
|
|
||||||
|
|
||||||
|
(ju/leader-key-def
|
||||||
|
"o" '(:ignore t :which-key "Org mode")
|
||||||
|
"oa" '(:ignore t :which-key "Org Agenda")
|
||||||
|
"oar" '(my/org-roam-refresh-agenda-list :which-key "Org agenda refresh list")
|
||||||
|
"oaa" '(org-agenda :which-key "open org agenda"))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Org mode Addons
|
** Org mode Addons
|
||||||
@ -908,6 +917,8 @@ https://emacs.stackexchange.com/a/30691
|
|||||||
(org-roam-db-autosync-mode))
|
(org-roam-db-autosync-mode))
|
||||||
;;(org-roam-setup))
|
;;(org-roam-setup))
|
||||||
(ju/leader-key-def
|
(ju/leader-key-def
|
||||||
|
"r" '(:ignore t :which-key "Org Roam")
|
||||||
|
"ru" 'org-roam-ui-mode
|
||||||
"rl" 'org-roam-buffer-toggle
|
"rl" 'org-roam-buffer-toggle
|
||||||
"rf" 'org-roam-node-find
|
"rf" 'org-roam-node-find
|
||||||
"ri" 'org-roam-node-insert
|
"ri" 'org-roam-node-insert
|
||||||
|
|||||||
Reference in New Issue
Block a user