From 943ad74f4a7deeeeae9a47101801b74060eedd6a Mon Sep 17 00:00:00 2001 From: Ryan Date: Tue, 10 Sep 2024 12:27:13 -0700 Subject: [PATCH] stuff --- .bash_env | 3 +++ .config/doom/config.el | 12 +++++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.bash_env b/.bash_env index 9c604a3..ef4de0f 100644 --- a/.bash_env +++ b/.bash_env @@ -21,3 +21,6 @@ PATH=$PATH:~/.config/emacs/bin/ # Flatpak path PATH=$PATH:/var/lib/flatpak/exports/bin PATH=$PATH:/var/lib/flatpak/app + +# Guile Load Path +export GUILE_LOAD_PATH="/usr/local/share/guile/site/3.0" diff --git a/.config/doom/config.el b/.config/doom/config.el index b32e1c0..db037df 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -81,7 +81,7 @@ (setq org-todo-keywords '((sequence "NEXT(n)" "TODO(t)" "|" "DONE(d!)") - (sequence "ACTIVE(a)" "PROJ(p)" "READY(r)" "WAIT(w@/!)" "HOLD(h)" "BACKLOG(b)" "DOC(u)" "|" "COMPLETED(c)" "CANC(k@)"))) + (sequence "ACTIVE(a)" "PROJ(p)" "READY(r)" "WAIT(w@/!)" "HOLD(h)" "BACKLOG(b)" "WORKOUT(wo)" "|" "CANC(k@)"))) (setq org-todo-keyword-faces '(("NEXT" . "red") ("TODO" . "orange") ("WAIT" . "yellow") ("DONE" . "green"))) @@ -116,10 +116,12 @@ ;; Create capture templates (setq org-capture-templates `(("t" "Tasks") - ("tw" "Work Task" entry (file+olp "~/documents/org/agenda/todo.org" "Work") - "* TODO %?\n %U\n %a\n %i" :empty-lines 1) - ("tp" "Personal Task" entry (file+olp "~/documents/org/agenda/todo.org" "Personal") - "* TODO %?\n %U\n %a\n %i" :empty-lines 1))) + ("tw" "Work Task" entry (file+headline "~/documents/org/agenda/todo.org" "Work") + "* TODO %?\n %U\n %i" :empty-lines 1) + ("tp" "Personal Task" entry (file+headline "~/documents/org/agenda/todo.org" "Personal") + "* TODO %?\n %U\n %i" :empty-lines 1) + ("tb" "Backlog Task" entry (file+headline "~/documents/org/agenda/todo.org" "Backlog") + "* BACKLOG %?\n %U\n %i" :empty-lines 1))) ;; Tell Org to stop indenting inside of org source blocks. (setq org-edit-src-content-indentation 0)