From 5295838a487b2d2865c28a192a79a2af02fff766 Mon Sep 17 00:00:00 2001 From: Zheng Qu Date: Thu, 21 Mar 2024 11:31:22 +0100 Subject: [PATCH] fix: Remove the indentation of the org capture template --- spacemacs.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spacemacs.org b/spacemacs.org index 577e4df..f0418d9 100644 --- a/spacemacs.org +++ b/spacemacs.org @@ -540,7 +540,7 @@ E.g. when visiting a soft/hard link. *** org-todo #+BEGIN_SRC emacs-lisp :tangle user-config.el (with-eval-after-load 'org - (let ((capture-template "* TODO %?\n %U\n %i\n %a")) + (let ((capture-template "* TODO %?\n%U\n%i\n%a")) (progn (setq org-todo-keywords '((sequence "TODO(t)" "IN_PROGRESS" "UNDER_REVEW" "|" "DONE(d)") @@ -548,9 +548,9 @@ E.g. when visiting a soft/hard link. (sequence "|" "INACTIVE(i)" "INCOMPLETE(n)" "CANCELED(c)" "REPORTED(R)"))) (setq org-capture-templates '(("h" "Home" entry (file+headline "~/org/home/tasks.org" "Tasks") - "* TODO %?\n %U\n %i\n %a") + "* TODO %?\n%U\n%i\n%a") ("w" "Work" entry (file+headline "~/org/work/tasks.org" "Tasks") - "* TODO %?\n %U\n %i\n %a"))) + "* TODO %?\n%U\n%i\n%a"))) (setq org-project-capture-capture-template capture-template)))) (spacemacs/set-leader-keys "aoh" (lambda () (interactive) (find-file "~/org/home/tasks.org"))