tune todo setup to work with orgzly slip box / daily churn area -- includes some keyboard shortcut tweaks to make things more cohesive

This commit is contained in:
KemoNine 2023-02-13 08:29:18 -05:00
parent 1b1d299e2b
commit 060e3103ea
4 changed files with 18 additions and 6 deletions

View File

@ -23,8 +23,15 @@
; orgmode capture templates ; orgmode capture templates
(setq org-capture-templates '( (setq org-capture-templates '(
("d" "TODO" entry ("d" "TODO (Main)" entry
(file+headline "~/org/_todo.org" "Active") (file "~/org/orgzly/_todo.org")
(file "~/org/template_todo.org")
:prepend t
:immediate-finish "f"
:jump-to-captured "t"
)
("s" "TODO (Slipbox)" entry
(file "~/org/orgzly/_slipbox.org")
(file "~/org/template_todo.org") (file "~/org/template_todo.org")
:prepend t :prepend t
:immediate-finish "f" :immediate-finish "f"

View File

@ -16,7 +16,8 @@
(split-window-below 15) (split-window-below 15)
(next-multiframe-window) (next-multiframe-window)
(find-file "~/org/_habits.org") (find-file "~/org/_habits.org")
(find-file "~/org/_todo.org") (find-file "~/org/orgzly/_todo.org")
(find-file "~/org/orgzly/_slipbox.org")
(find-file "~/org/_index.org") (find-file "~/org/_index.org")
) )
) )

View File

@ -6,7 +6,10 @@
(global-set-key (kbd "C-c c") 'org-capture) (global-set-key (kbd "C-c c") 'org-capture)
(global-set-key (kbd "C-c z") 'org-attach) (global-set-key (kbd "C-c z") 'org-attach)
(global-set-key (kbd "C-c t") (global-set-key (kbd "C-c t")
(lambda () (interactive) (find-file "~/org/_todo.org")) (lambda () (interactive) (find-file "~/org/orgzly/_todo.org"))
)
(global-set-key (kbd "C-c s")
(lambda () (interactive) (find-file "~/org/orgzly/_slipbox.org"))
) )
(global-set-key (kbd "C-c n") (global-set-key (kbd "C-c n")
(lambda () (interactive) (find-file "~/org/_index.org")) (lambda () (interactive) (find-file "~/org/_index.org"))
@ -22,4 +25,4 @@
) )
(global-set-key (kbd "C-c v") (global-set-key (kbd "C-c v")
(lambda () (interactive) (dired "~/org/Document_Archive")) (lambda () (interactive) (dired "~/org/Document_Archive"))
) )

View File

@ -3,7 +3,8 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Open main files used as 'gateway' to everything else (Mobile) ; Open main files used as 'gateway' to everything else (Mobile)
(find-file "~/storage/shared/org/_habits.org") (find-file "~/storage/shared/org/_habits.org")
(find-file "~/storage/shared/org/_todo.org") (find-file "~/storage/shared/org/orgzly/_todo.org")
(find-file "~/storage/shared/org/orgzly/_slipbox.org"
(find-file "~/storage/shared/org/_index.org") (find-file "~/storage/shared/org/_index.org")
; Personal startup screen - orgmode agenda with all TODO (Mobile) ; Personal startup screen - orgmode agenda with all TODO (Mobile)