From af7d26f08d424bbeaad8819760199e793dc22337 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Thu, 15 Jul 2021 09:00:37 -0400 Subject: fix(gs/emacs): Shift around loading of org config I don't know why this is causing issues, I really don't. But I get agenda items without having to reload this file now. Change-Id: I38fd4f7942430a07231cadbc0320e1ba786616e6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3249 Reviewed-by: grfn Tested-by: BuildkiteCI --- users/grfn/emacs.d/config.el | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'users/grfn') diff --git a/users/grfn/emacs.d/config.el b/users/grfn/emacs.d/config.el index 91e7a2b888b0..c06865cd730a 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")) -- cgit 1.4.1