diff options
Diffstat (limited to 'doom.d/config.el')
-rw-r--r-- | doom.d/config.el | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/doom.d/config.el b/doom.d/config.el index 690789c..cae9e28 100644 --- a/doom.d/config.el +++ b/doom.d/config.el @@ -7,7 +7,8 @@ ;; Some functionality uses this to identify you, e.g. GPG configuration, email ;; clients, file templates and snippets. It is optional. (setq user-full-name "Matthew Lemon" - user-mail-address "matt@matthewlemon.com") + user-mail-address " +matt@matthewlemon.com") ;; Doom exposes five (optional) variables for controlling fonts in Doom: ;; @@ -18,8 +19,8 @@ ;; - `doom-unicode-font' -- for unicode glyphs ;; - `doom-serif-font' -- for the `fixed-pitch-serif' face ;; -(setq doom-font (font-spec :family "Iosevka Regular" :size 16) - doom-variable-pitch-font (font-spec :family "Iosevka Regular" :size 16)) +(setq doom-font (font-spec :family "Jetbrains Mono" :size 16) + doom-variable-pitch-font (font-spec :family "Jetbrains Mono" :size 16)) ;; ;; See 'C-h v doom-font' for documentation and more examples of what they ;; accept. For example: @@ -76,6 +77,7 @@ (use-package org-roam :custom (org-roam-directory "~/org-roam") + (setq org-roam-dailies-directory "daily/") (org-roam-complete-everywhere t) (setq org-roam-capture-templates '(("d" "default" plain @@ -87,8 +89,8 @@ :target (file+head "%<%Y%m%d%H%M%S>-${slug}.org.gpg" "#+title: ${title}\n") :unnarrowed t))) (setq org-roam-dailies-capture-templates - '(("d" "default" entry "* %<%H:%M>: %?" - :if-new (file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n") + '(("d" "default" entry "* %<%T>: %?" + :target (file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n") :unnarrowed t)))) ;; Basic agenda stuff @@ -127,6 +129,8 @@ (setq org-agenda-skip-scheduled-if-done t) (setq org-reverse-note-order t) (setq +org-habit-min-width 45) + (setq org-habit-show-habits t) + (setq org-habit-show-habits-only-for-today nil) (setq org-agenda-sort-notime-is-late nil) (setq org-columns-default-format "%50ITEM(Task) %10CLOCKSUM %25TIMESTAMP_IA") (setq org-archive-location "~/org/archive.org::* From %s") @@ -291,17 +295,17 @@ ;; org tags (setq org-tag-alist '( ;; Depth - ("immersive" . ?i) ;; "Deep" - ("process" . ?p) ;; "Shallow" - ("offdesk" . ?o) ;; "Away from desk" + ("@immersive" . ?i) ;; "Deep" + ("@process" . ?p) ;; "Shallow" + ("@offdesk" . ?o) ;; "Away from desk" ;; Type ("brainstorm" . ?b) ("idea" . ?d) ;; Context - ("work" . ?w) - ("home" . ?h) - ("errand" . ?e) - ("emacs" . ?E) + ("@work" . ?w) + ("@home" . ?h) + ("@errand" . ?e) + ("@emacs" . ?E) ;; Energy ("Challenge" . ?1) ("Average" . ?2) |