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:
parent
1b1d299e2b
commit
060e3103ea
|
@ -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"
|
||||||
|
|
|
@ -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")
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
@ -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"))
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Reference in a new issue