From 79a2833e413209e9cfb696156fdbf6c9ed7ebbc4 Mon Sep 17 00:00:00 2001 From: Tony Grosinger Date: Tue, 12 May 2020 13:55:39 -0700 Subject: [PATCH] Switch to yearly file in emacs --- .spacemacs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.spacemacs b/.spacemacs index 471e299..0f6c7c2 100644 --- a/.spacemacs +++ b/.spacemacs @@ -137,7 +137,7 @@ values." dotspacemacs-colorize-cursor-according-to-state t ;; Default font, or prioritized list of fonts. `powerline-scale' allows to ;; quickly tweak the mode-line size to make separators look not too crappy. - dotspacemacs-default-font '("Fira Code" + dotspacemacs-default-font '("JetBrains Mono" :size 13 :weight normal :width normal @@ -360,7 +360,7 @@ you should place your code here." (defun archive-task-today () (interactive) (let* ((date (format-time-string "%Y-%m-%b")) - (org-archive-location (concat "~/org/" date ".org::datetree/** Tasks for today")) + (org-archive-location "~/org/2020-journal.org::datetree/** Tasks for today") (org-archive-save-context-info nil)) (org-archive-subtree))) (spacemacs/set-leader-keys-for-major-mode 'org-mode "st" 'archive-task-today)