From 051e45fe2b440fcfb3cf40ae1bcaa57ee674c16a Mon Sep 17 00:00:00 2001 From: KemoNine Date: Tue, 1 Oct 2024 13:35:43 -0400 Subject: [PATCH] remove orgzly sub folder as part of cleanup --- common/workspaces.el | 12 ++++++------ org/config-org-agendas.el | 12 ++++++------ org/config-org-capture.el | 10 +++++----- org/config-org-keyboard.el | 4 ++-- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/common/workspaces.el b/common/workspaces.el index 2d47dbb..e39e2b7 100644 --- a/common/workspaces.el +++ b/common/workspaces.el @@ -74,9 +74,9 @@ (kmn/kill-other-buffers) (ignore-errors (kill-buffer "*scratch*")) ; Open main files used as 'gateway' to everything else - (find-file "~/org/orgzly/_habits.org") - (find-file "~/org/orgzly/_todo.org") - (find-file "~/org/orgzly/_slipbox.org") + (find-file "~/org/_habits.org") + (find-file "~/org/_todo.org") + (find-file "~/org/_slipbox.org") (find-file "~/org/_index.org") ; top window for habits/scheduled (org-agenda nil "h") @@ -98,9 +98,9 @@ (kmn/kill-other-buffers) (ignore-errors (kill-buffer "*scratch*")) ; Open main files used as 'gateway' to everything else - (find-file "~/org/orgzly/_habits.org") - (find-file "~/org/orgzly/_todo.org") - (find-file "~/org/orgzly/_slipbox.org") + (find-file "~/org/_habits.org") + (find-file "~/org/_todo.org") + (find-file "~/org/_slipbox.org") (find-file "~/org/_index.org") ; Personal startup screen - orgmode agenda with all TODO (org-agenda nil "r") diff --git a/org/config-org-agendas.el b/org/config-org-agendas.el index f6b590c..fd0aafa 100644 --- a/org/config-org-agendas.el +++ b/org/config-org-agendas.el @@ -82,8 +82,8 @@ (setq org-agenda-file-regexp "\\`[^.].*\\.org\\'") (setq org-agenda-files (list "~/org/_index.org" - "~/org/orgzly/_todo.org" - "~/org/orgzly/_slipbox.org" + "~/org/_todo.org" + "~/org/_slipbox.org" )) @@ -141,8 +141,8 @@ )) (agenda "" ( (org-agenda-overriding-header "Habits") - (org-agenda-files (list "~/org/orgzly/_habits.org" - "~/org/orgzly/_meds.org")) + (org-agenda-files (list "~/org/_habits.org" + "~/org/_meds.org")) (org-agenda-remove-tags t) )) (tags-todo "+homework" ( @@ -173,8 +173,8 @@ )) (agenda "" ( (org-agenda-overriding-header "Habits") - (org-agenda-files (list "~/org/orgzly/_habits.org" - "~/org/orgzly/_meds.org")) + (org-agenda-files (list "~/org/_habits.org" + "~/org/_meds.org")) (org-agenda-remove-tags t) )) ) diff --git a/org/config-org-capture.el b/org/config-org-capture.el index 1ddeb84..aab2049 100644 --- a/org/config-org-capture.el +++ b/org/config-org-capture.el @@ -20,14 +20,14 @@ ; orgmode capture templates (setq org-capture-templates '( ("d" "TODO (Main)" entry - (file "~/org/orgzly/_todo.org") + (file "~/org/_todo.org") (file "~/org/_org-capture-templates/template_todo.org") :prepend t :immediate-finish "f" :jump-to-captured "t" ) ("s" "TODO (Slipbox)" entry - (file "~/org/orgzly/_slipbox.org") + (file "~/org/_slipbox.org") (file "~/org/_org-capture-templates/template_slipbox.org") :prepend t :immediate-finish "f" @@ -36,7 +36,7 @@ ("h" "Health") ("hc" "Couples") ("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") :immediate-finish "f" :jump-to-captured "t" @@ -45,7 +45,7 @@ ) ("hm" "Mike") ("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") :immediate-finish "f" :jump-to-captured "t" @@ -53,7 +53,7 @@ :prepend "t" ) ("m" "Music import (beets)" entry - (file "~/org/orgzly/_slipbox.org") + (file "~/org/_slipbox.org") (file "~/org/_org-capture-templates/template_beets.org") :prepend t :immediate-finish "f" diff --git a/org/config-org-keyboard.el b/org/config-org-keyboard.el index 4ff07b6..555f8d0 100644 --- a/org/config-org-keyboard.el +++ b/org/config-org-keyboard.el @@ -16,8 +16,8 @@ (lambda () (interactive) (find-file "~/org/_index.org")) ) (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") - (lambda () (interactive) (find-file "~/org/orgzly/_slipbox.org")) + (lambda () (interactive) (find-file "~/org/_slipbox.org")) )