|
@@ -5,14 +5,14 @@
|
|
|
;;; Code:
|
|
|
(setq +todo-file "~/org/inbox.org")
|
|
|
|
|
|
-(setq org-directory (expand-file-name "~/Org/")
|
|
|
- org-journal-dir "~/Org/journal/"
|
|
|
+(setq org-directory (expand-file-name "~/org/")
|
|
|
+ org-journal-dir "~/org/journal/"
|
|
|
org-startup-indented t
|
|
|
org-agenda-files (list org-directory)
|
|
|
org-pretty-entities t
|
|
|
org-hide-emphasis-markers t
|
|
|
org-hide-leading-stars t
|
|
|
- org-contacts-files '("~/Org/contacts.org")
|
|
|
+ org-contacts-files '("~/org/contacts.org")
|
|
|
; attempt to return todo function to spacemacs
|
|
|
evil-org-key-theme '(textobjects navigation additional insert todo)
|
|
|
;; show actually italicized text instead of /italicized text/
|
|
@@ -24,15 +24,15 @@
|
|
|
org-bullets-face-name (quote org-bullet-face)
|
|
|
org-bullets-bullet-list '("■" "◆" "▲" "▶")
|
|
|
org-capture-templates
|
|
|
- '(("i" "Send to inbox" entry (file+headline "~/Org/inbox.org" "Inbox")
|
|
|
+ '(("i" "Send to inbox" entry (file+headline "~/org/inbox.org" "Inbox")
|
|
|
"* TODO %?\n %i\n %a")
|
|
|
- ("n" "Create new note" entry (file "~/Org/notes.org")
|
|
|
+ ("n" "Create new note" entry (file "~/org/notes.org")
|
|
|
"* %?\nEntered on %U\n %i\n %a")
|
|
|
- ("e" "Elation related note" entry (file "~/Org/elation.org")
|
|
|
+ ("e" "Elation related note" entry (file "~/org/elation.org")
|
|
|
"* %?\nEntered on %U\n %i\n %a")
|
|
|
- ("g" "Add glossary note" entry (file "~/Org/glossary.org")
|
|
|
+ ("g" "Add glossary note" entry (file "~/org/glossary.org")
|
|
|
"* %?\nEntered on %U\n %i\n")
|
|
|
- ("d" "Add an idea" entry (file "~/Org/ideas.org")
|
|
|
+ ("d" "Add an idea" entry (file "~/org/ideas.org")
|
|
|
"* %?\nEntered on %U\n %i\n"))
|
|
|
|
|
|
org-todo-keywords '((sequence "TODO(t)" "|" "DONE(d)"))
|
|
@@ -66,11 +66,11 @@
|
|
|
org-toc)
|
|
|
|
|
|
; refile targets
|
|
|
- org-refile-targets '(("~/Org/todo.org" :maxlevel . 2)
|
|
|
- ("~/Org/someday.org" :maxlevel . 2)
|
|
|
- ("~/Org/town.org" :maxlevel . 2)
|
|
|
- ("~/Org/personal.org" :maxlevel . 2)
|
|
|
- ("~/Org/elation.org" :maxlevel . 2)))
|
|
|
+ org-refile-targets '(("~/org/todo.org" :maxlevel . 2)
|
|
|
+ ("~/org/someday.org" :maxlevel . 2)
|
|
|
+ ("~/org/town.org" :maxlevel . 2)
|
|
|
+ ("~/org/personal.org" :maxlevel . 2)
|
|
|
+ ("~/org/elation.org" :maxlevel . 2)))
|
|
|
|
|
|
;; org-match-sparse-tree
|
|
|
;; org-set-tags-command
|