Archived
1
0
Fork 0

remove orgzly sub folder as part of cleanup

This commit is contained in:
KemoNine 2024-10-01 13:35:43 -04:00
parent 7c11325292
commit 051e45fe2b
4 changed files with 19 additions and 19 deletions

View file

@ -74,9 +74,9 @@
(kmn/kill-other-buffers) (kmn/kill-other-buffers)
(ignore-errors (kill-buffer "*scratch*")) (ignore-errors (kill-buffer "*scratch*"))
; Open main files used as 'gateway' to everything else ; Open main files used as 'gateway' to everything else
(find-file "~/org/orgzly/_habits.org") (find-file "~/org/_habits.org")
(find-file "~/org/orgzly/_todo.org") (find-file "~/org/_todo.org")
(find-file "~/org/orgzly/_slipbox.org") (find-file "~/org/_slipbox.org")
(find-file "~/org/_index.org") (find-file "~/org/_index.org")
; top window for habits/scheduled ; top window for habits/scheduled
(org-agenda nil "h") (org-agenda nil "h")
@ -98,9 +98,9 @@
(kmn/kill-other-buffers) (kmn/kill-other-buffers)
(ignore-errors (kill-buffer "*scratch*")) (ignore-errors (kill-buffer "*scratch*"))
; Open main files used as 'gateway' to everything else ; Open main files used as 'gateway' to everything else
(find-file "~/org/orgzly/_habits.org") (find-file "~/org/_habits.org")
(find-file "~/org/orgzly/_todo.org") (find-file "~/org/_todo.org")
(find-file "~/org/orgzly/_slipbox.org") (find-file "~/org/_slipbox.org")
(find-file "~/org/_index.org") (find-file "~/org/_index.org")
; Personal startup screen - orgmode agenda with all TODO ; Personal startup screen - orgmode agenda with all TODO
(org-agenda nil "r") (org-agenda nil "r")

View file

@ -82,8 +82,8 @@
(setq org-agenda-file-regexp "\\`[^.].*\\.org\\'") (setq org-agenda-file-regexp "\\`[^.].*\\.org\\'")
(setq org-agenda-files (list (setq org-agenda-files (list
"~/org/_index.org" "~/org/_index.org"
"~/org/orgzly/_todo.org" "~/org/_todo.org"
"~/org/orgzly/_slipbox.org" "~/org/_slipbox.org"
)) ))
@ -141,8 +141,8 @@
)) ))
(agenda "" ( (agenda "" (
(org-agenda-overriding-header "Habits") (org-agenda-overriding-header "Habits")
(org-agenda-files (list "~/org/orgzly/_habits.org" (org-agenda-files (list "~/org/_habits.org"
"~/org/orgzly/_meds.org")) "~/org/_meds.org"))
(org-agenda-remove-tags t) (org-agenda-remove-tags t)
)) ))
(tags-todo "+homework" ( (tags-todo "+homework" (
@ -173,8 +173,8 @@
)) ))
(agenda "" ( (agenda "" (
(org-agenda-overriding-header "Habits") (org-agenda-overriding-header "Habits")
(org-agenda-files (list "~/org/orgzly/_habits.org" (org-agenda-files (list "~/org/_habits.org"
"~/org/orgzly/_meds.org")) "~/org/_meds.org"))
(org-agenda-remove-tags t) (org-agenda-remove-tags t)
)) ))
) )

View file

@ -20,14 +20,14 @@
; orgmode capture templates ; orgmode capture templates
(setq org-capture-templates '( (setq org-capture-templates '(
("d" "TODO (Main)" entry ("d" "TODO (Main)" entry
(file "~/org/orgzly/_todo.org") (file "~/org/_todo.org")
(file "~/org/_org-capture-templates/template_todo.org") (file "~/org/_org-capture-templates/template_todo.org")
:prepend t :prepend t
:immediate-finish "f" :immediate-finish "f"
:jump-to-captured "t" :jump-to-captured "t"
) )
("s" "TODO (Slipbox)" entry ("s" "TODO (Slipbox)" entry
(file "~/org/orgzly/_slipbox.org") (file "~/org/_slipbox.org")
(file "~/org/_org-capture-templates/template_slipbox.org") (file "~/org/_org-capture-templates/template_slipbox.org")
:prepend t :prepend t
:immediate-finish "f" :immediate-finish "f"
@ -36,7 +36,7 @@
("h" "Health") ("h" "Health")
("hc" "Couples") ("hc" "Couples")
("hcd" "Appointment noteworthy developments / [time] in review" ("hcd" "Appointment noteworthy developments / [time] in review"
entry (file "~/org/orgzly/_slipbox.org") entry (file "~/org/_slipbox.org")
(file "~/org/_org-capture-templates/template_couples_apt_developments.org") (file "~/org/_org-capture-templates/template_couples_apt_developments.org")
:immediate-finish "f" :immediate-finish "f"
:jump-to-captured "t" :jump-to-captured "t"
@ -45,7 +45,7 @@
) )
("hm" "Mike") ("hm" "Mike")
("hmd" "Appointment noteworthy developments / [time] in review" ("hmd" "Appointment noteworthy developments / [time] in review"
entry (file "~/org/orgzly/_slipbox.org") entry (file "~/org/_slipbox.org")
(file "~/org/_org-capture-templates/template_therapy_apt_developments.org.org") (file "~/org/_org-capture-templates/template_therapy_apt_developments.org.org")
:immediate-finish "f" :immediate-finish "f"
:jump-to-captured "t" :jump-to-captured "t"
@ -53,7 +53,7 @@
:prepend "t" :prepend "t"
) )
("m" "Music import (beets)" entry ("m" "Music import (beets)" entry
(file "~/org/orgzly/_slipbox.org") (file "~/org/_slipbox.org")
(file "~/org/_org-capture-templates/template_beets.org") (file "~/org/_org-capture-templates/template_beets.org")
:prepend t :prepend t
:immediate-finish "f" :immediate-finish "f"

View file

@ -16,8 +16,8 @@
(lambda () (interactive) (find-file "~/org/_index.org")) (lambda () (interactive) (find-file "~/org/_index.org"))
) )
(global-set-key (kbd "C-c d t") (global-set-key (kbd "C-c d t")
(lambda () (interactive) (find-file "~/org/orgzly/_todo.org")) (lambda () (interactive) (find-file "~/org/_todo.org"))
) )
(global-set-key (kbd "C-c d s") (global-set-key (kbd "C-c d s")
(lambda () (interactive) (find-file "~/org/orgzly/_slipbox.org")) (lambda () (interactive) (find-file "~/org/_slipbox.org"))
) )