Skip to content

Commit

Permalink
fix: re-introduce missing org-mode settings
Browse files Browse the repository at this point in the history
I forgot that I no longer use custom...  I should make a note in
`configuration.org` about it.
  • Loading branch information
winny- committed Dec 17, 2023
1 parent 875a8e5 commit 607c09a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
14 changes: 12 additions & 2 deletions configuration.org
Original file line number Diff line number Diff line change
Expand Up @@ -1082,8 +1082,18 @@ See:
org-special-ctrl-k t
org-special-ctrl-k 'error
org-catch-invisible-edits t
org-startup-folded 'fold))

org-startup-folded 'fold
org-capture-templates
'(("a" "Anything" entry
(file+datetree "~/files/notes/unsorted.org")
(file "~/.emacs.d/org-capture-templates/unsorted.org"))
("j" "Journal Entry" entry
(file+datetree "~/files/writings/journal/journal.org")
(file "~/.emacs.d/org-capture-templates/journal-item.org"))
("t" "Todo list item" entry
(file+headline "~/files/notes/todo.org" "Inbox")
(file "~/.emacs.d/org-capture-templates/todo-item.org")))
org-default-notes-file "~/files/notes/unsorted.org"))
(use-package org-contrib
:ensure t
:after org)
Expand Down
11 changes: 0 additions & 11 deletions custom.el
Original file line number Diff line number Diff line change
Expand Up @@ -166,17 +166,6 @@ static char *gnus-pointer[] = {
'(nrepl-message-colors
'("#dc322f" "#cb4b16" "#b58900" "#546E00" "#B4C342" "#00629D" "#2aa198" "#d33682" "#6c71c4"))
'(org-agenda-files '("~/docs/orgs/todo.org"))
'(org-capture-templates
'(("s" "Snippet" entry
(file+datetree "~/docs/unsorted.org")
(file "~/.emacs.d/org-capture-templates/unsorted.org"))
("j" "Journal Entry" entry
(file+datetree "~/docs/journal/journal.org")
(file "~/.emacs.d/org-capture-templates/journal-item.org"))
("t" "Todo list item" entry
(file+headline "~/docs/todo/todo.org" "Incoming")
(file "~/.emacs.d/org-capture-templates/todo-item.org"))))
'(org-default-notes-file "~/docs/notes.org")
'(org-hide-emphasis-markers nil)
'(org-indent-mode-turns-on-hiding-stars t)
'(org-latex-hyperref-template
Expand Down

0 comments on commit 607c09a

Please sign in to comment.