Compare commits

...

2 Commits

Author SHA1 Message Date
6bc66f302d
Let Org decide about spacing between plain list items
I still like lists with blank lines between items better to read, but
occassionally more compact lists are better.
2024-07-08 13:59:45 +02:00
a3e6130056
Fix wrong defaults for frequently used shortcuts 2024-07-08 13:59:22 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -613,7 +613,7 @@
org-id-link-to-org-use-id t
org-blank-before-new-entry '((heading . t)
(plain-list-item . t))
(plain-list-item . auto))
org-duration-format '(("y") ("w") ("d") (special . h:mm))

View File

@ -140,11 +140,11 @@ in the main agenda view."
'(("Mail" ?m db/gnus)
("Agenda" ?a db/org-agenda)
("Init File" ?i db/find-user-init-file)
("Main Org File" ?o #'(lambda () (interactive) (find-file db/org-default-org-file)))
("Main Org File" ?o (lambda () (interactive) (find-file db/org-default-org-file)))
("EMMS" ?M emms)
("Shell" ?s db/run-or-hide-shell)
("EShell" ?e db/run-or-hide-eshell)
("Refile File" ?r #'(lambda () (interactive) (find-file db/org-default-refile-file)))
("Refile File" ?r (lambda () (interactive) (find-file db/org-default-refile-file)))
("Goto Currnet Clock" ?c db/org-clock-goto-first-open-checkbox)
("Info Lookup" ?I info-lookup-symbol)
("Unicode Lookup" ?U insert-char)