Try to fix borked org config #emacs

This commit is contained in:
Colin Powell
2019-03-11 16:01:30 -04:00
parent fbe8371c4f
commit c0d5134d3f
4 changed files with 169 additions and 125 deletions

View File

@ -5,14 +5,11 @@
;;; Code:
(setq +todo-file "~/org/inbox.org")
(add-hook! :append org-load
(after! org
(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")
; attempt to return todo function to spacemacs
evil-org-key-theme '(textobjects navigation additional insert todo)
@ -21,9 +18,8 @@
org-fontify-whole-heading-line t
org-fontify-done-headline t
org-fontify-quote-and-verse-blocks t
org-log-done 'time
org-bullets-face-name (quote org-bullet-face)
org-bullets-bullet-list '("" "" "" "")
org-bullets-bullet-list '("#")
org-capture-templates
'(
("i" "Send to inbox" entry (file+headline "~/org/inbox.org" "Inbox")
@ -35,7 +31,6 @@
("n" "Add an idea" entry (file "~/org/ideas.org")
"* %?\nEntered on %U\n"))
org-agenda-include-diary nil
org-todo-keywords
'((sequence "TODO(t)" "NEXT(n)" "WAITING(w)" "MAYBE(m)" "|" "DONE(d)"))