about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--users/grfn/emacs.d/config.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/users/grfn/emacs.d/config.el b/users/grfn/emacs.d/config.el
index 91e7a2b888..c06865cd73 100644
--- a/users/grfn/emacs.d/config.el
+++ b/users/grfn/emacs.d/config.el
@@ -22,7 +22,6 @@
 
 (load! "utils")
 (load! "company-sql")
-(load! "org-query")
 (load! "show-matching-paren")
 (load! "irc")
 (load! "github-org")
@@ -362,6 +361,7 @@
   (setq evil-shift-width 2))
 
 (after! org
+  (load! "org-query")
   (load! "org-config"))
 
 (after! magit
@@ -707,6 +707,7 @@
 
 (use-package! graphql-mode)
 
+
 (require 'whitespace)
 (setq whitespace-style '(face lines-tail))
 (global-whitespace-mode t)
@@ -895,7 +896,6 @@
 (use-package! ob-async)
 
 (use-package! org-recent-headings
-  :after (org)
   :config
   (map! :n "SPC n r" #'org-recent-headings-ivy))
 
@@ -907,6 +907,11 @@
 
 (enable-theme 'grfn-solarized-light)
 
+;;; this needs to be *after the theme*, or else I get no agenda items.
+;;; whuuu??
+(load! "org-config")
+
+
 ;;; word-char
 (add-hook! prog-mode
   (modify-syntax-entry ?_ "w"))