From 86c4ecb141b653bf93c589c48d3837bdd7829036 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 22 Jan 2016 19:35:05 -0500 Subject: [PATCH] org: clean up --- modules/module-org.el | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/modules/module-org.el b/modules/module-org.el index 282614ca2..055cedb89 100644 --- a/modules/module-org.el +++ b/modules/module-org.el @@ -26,9 +26,6 @@ org-archive-location (concat org-directory "/archive/%s::") org-attach-directory ".attach/" - ;; org-mobile-inbox-for-pull (concat org-directory "notes.org") - ;; org-mobile-directory "~/Dropbox/Apps/MobileOrg" - ;; Use helm for refiling org-completion-use-ido nil org-refile-targets '((nil . (:maxlevel . 2))) @@ -243,7 +240,8 @@ will function properly." org-priority-faces '((?A . org-todo-vhigh) - (?B . org-todo-high))) + (?B . org-todo-high) + (?C . org-todo))) (add-hook! org-mode (highlight-regexp org-any-link-re 'org-link)) @@ -283,12 +281,9 @@ will function properly." ("^\\**\\(\\* DONE\\) \\([^$\n\r]+\\)" (1 (narf/show-as ?☑)) (2 'org-headline-done)) - ("^\\**\\(\\* \\(TODO\\|PAID\\)\\) " + ("^\\**\\(\\* \\(?:TODO\\|PAID\\)\\) " (1 (narf/show-as ?☐))) - ;; ("[-+*] \\(\\[X\\]\\) \\([^$\n\r]+\\)" - ;; (2 'org-headline-done)) - ("[-+*] \\[X\\] \\([^$\n\r]+\\)" (1 'org-headline-done)) @@ -309,7 +304,7 @@ will function properly." (evil-org-mode +1) (org-bullets-mode +1) (org-indent-mode +1) - (text-scale-set 1) + ;; (text-scale-set 1) ;;; OS-Specific (cond (IS-MAC (narf-org-init-for-osx)) @@ -346,8 +341,7 @@ will function properly." (exmap! "link" 'org-link) (exmap! "wc" 'narf/org-word-count) (exmap! "at[tach]" 'narf:org-attach) - (exmap! "export" 'narf:org-export) - ) + (exmap! "export" 'narf:org-export)) (defun narf|org-init () (narf@org-vars)