Skip to content

Commit

Permalink
fix: Remove the indentation of the org capture template
Browse files Browse the repository at this point in the history
  • Loading branch information
Maverobot committed Mar 21, 2024
1 parent 6d04ebe commit 5295838
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spacemacs.org
Original file line number Diff line number Diff line change
Expand Up @@ -540,17 +540,17 @@ 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)")
(sequence "REPORT(r)" "BUG(b)" "KNOWNCAUSE(k)" "|" "FIXED(f)")
(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"))
Expand Down

0 comments on commit 5295838

Please sign in to comment.