Compare commits
No commits in common. "8c5f54709b1ed37bbed4f0a56086b1d0f1f95ae3" and "99f89be39c973630d00e10b481cd52572054f155" have entirely different histories.
8c5f54709b
...
99f89be39c
19
init.el
19
init.el
@ -737,7 +737,7 @@ split horizontally again, but this extra work should not matter much."
|
||||
org-entry-get)
|
||||
:commands (org-return)
|
||||
:init (progn
|
||||
(setopt org-deadline-warning-days 14
|
||||
(setq org-deadline-warning-days 14
|
||||
org-read-date-popup-calendar t
|
||||
org-insert-heading-respect-content t
|
||||
org-adapt-indentation nil
|
||||
@ -754,9 +754,6 @@ split horizontally again, but this extra work should not matter much."
|
||||
org-log-done 'note
|
||||
org-clone-delete-id t
|
||||
org-fold-catch-invisible-edits 'show-and-error
|
||||
org-fold-show-context-detail '((default . lineage)) ; reveal more context by
|
||||
; default, to avoid
|
||||
; incompletly revealed items
|
||||
org-M-RET-may-split-line '((default . nil))
|
||||
org-highlight-latex-and-related '(latex)
|
||||
org-use-sub-superscripts '{}
|
||||
@ -773,8 +770,6 @@ split horizontally again, but this extra work should not matter much."
|
||||
org-bookmark-names-plist nil
|
||||
org-goto-interface 'outline-path-completion
|
||||
org-id-link-to-org-use-id t
|
||||
org-return-follows-link t
|
||||
org-hide-emphasis-markers t
|
||||
|
||||
org-blank-before-new-entry '((heading . t)
|
||||
(plain-list-item . auto))
|
||||
@ -796,7 +791,7 @@ split horizontally again, but this extra work should not matter much."
|
||||
|
||||
;; Keywords and Tags
|
||||
|
||||
(setopt org-todo-keywords
|
||||
(setq org-todo-keywords
|
||||
'((sequence "TODO(t@)" "CONT(n!)" "REFINE(f!)" "|" "DONE(d@)" "CANC(c@)" "MRGD(m@)")
|
||||
(sequence "GOTO(g@)" "ATTN(a!)" "|" "DONE(d@)")
|
||||
(sequence "READ(r@)" "CONT(n!)" "|" "DONE(d@)")
|
||||
@ -860,7 +855,7 @@ split horizontally again, but this extra work should not matter much."
|
||||
|
||||
;; Refiling
|
||||
|
||||
(setopt org-refile-targets '((org-agenda-files . (:maxlevel . 9))
|
||||
(setq org-refile-targets '((org-agenda-files . (:maxlevel . 9))
|
||||
(nil . (:maxlevel . 9))
|
||||
(db/org-default-notes-file . (:maxlevel . 9)))
|
||||
org-refile-use-outline-path 'buffer-name
|
||||
@ -872,9 +867,13 @@ split horizontally again, but this extra work should not matter much."
|
||||
|
||||
;; Babel
|
||||
|
||||
(setopt org-babel-load-languages '((shell . t)
|
||||
(setq org-babel-load-languages '((shell . t)
|
||||
(emacs-lisp . t)
|
||||
(sql . t))))
|
||||
(sql . t)))
|
||||
|
||||
;; Show more context when revealing locations, to avoid incompletly revealed items.
|
||||
|
||||
(setopt org-fold-show-context-detail '((default . lineage))))
|
||||
|
||||
:config (progn
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user