Refactor configuration of Org-mode
Now everything is set during :init (which may or may not be a good idea.)
This commit is contained in:
parent
a64603bad9
commit
21604ca994
@ -2273,7 +2273,25 @@ This is a big one; I use a lot of customisation here.
|
|||||||
org-log-into-drawer t
|
org-log-into-drawer t
|
||||||
org-tags-column 0
|
org-tags-column 0
|
||||||
org-startup-indented t
|
org-startup-indented t
|
||||||
org-special-ctrl-a/e t)
|
org-special-ctrl-a/e t
|
||||||
|
org-return-follows-link t
|
||||||
|
org-src-fontify-natively t
|
||||||
|
org-time-stamp-formats '("<%Y-%m-%d>" . "<%Y-%m-%d %H:%M>")
|
||||||
|
org-todo-keywords '((sequence "TODO(t)"
|
||||||
|
"DOING(w@/!)"
|
||||||
|
"BLOCKED(b@/!)"
|
||||||
|
"|"
|
||||||
|
"CANCELED(c@/!)"
|
||||||
|
"REVIEW(r@/!)"
|
||||||
|
"DONE(d@/!)"))
|
||||||
|
org-goto-interface 'outline-path-completion
|
||||||
|
org-goto-max-level 10
|
||||||
|
org-html-checkbox-type 'unicode
|
||||||
|
org-html-checkbox-types
|
||||||
|
'((unicode (on . "<span class=\"task-done\">☑</span>")
|
||||||
|
(off . "<span class=\"task-todo\">☐</span>")
|
||||||
|
(trans . "<span class=\"task-in-progress\">▣</span>")))
|
||||||
|
org-src-window-setup 'current-window)
|
||||||
:config
|
:config
|
||||||
(require 'ox-md)
|
(require 'ox-md)
|
||||||
(unless (boundp 'org-capture-templates)
|
(unless (boundp 'org-capture-templates)
|
||||||
@ -2287,22 +2305,6 @@ This is a big one; I use a lot of customisation here.
|
|||||||
entry (file+headline (concat org-directory "gt2-notes.org")
|
entry (file+headline (concat org-directory "gt2-notes.org")
|
||||||
"Captures")
|
"Captures")
|
||||||
"** %^{Title}\n :PROPERTIES:\n :on: %T\n :END:\n %i%?"))
|
"** %^{Title}\n :PROPERTIES:\n :on: %T\n :END:\n %i%?"))
|
||||||
(setq org-time-stamp-formats '("<%Y-%m-%d>" . "<%Y-%m-%d %H:%M>")
|
|
||||||
org-todo-keywords '((sequence "TODO(t)"
|
|
||||||
"DOING(w@/!)"
|
|
||||||
"BLOCKED(b@/!)"
|
|
||||||
"|"
|
|
||||||
"CANCELED(c@/!)"
|
|
||||||
"REVIEW(r@/!)"
|
|
||||||
"DONE(d@/!)"))
|
|
||||||
org-goto-interface 'outline-path-completion
|
|
||||||
org-goto-max-level 10
|
|
||||||
org-html-checkbox-type 'unicode
|
|
||||||
org-html-checkbox-types
|
|
||||||
'((unicode (on . "<span class=\"task-done\">☑</span>")
|
|
||||||
(off . "<span class=\"task-todo\">☐</span>")
|
|
||||||
(trans . "<span class=\"task-in-progress\">▣</span>")))
|
|
||||||
org-src-window-setup 'current-window)
|
|
||||||
(add-hook 'ediff-select-hook 'f-ediff-org-unfold-tree-element)
|
(add-hook 'ediff-select-hook 'f-ediff-org-unfold-tree-element)
|
||||||
(add-hook 'ediff-unselect-hook 'f-ediff-org-fold-tree)
|
(add-hook 'ediff-unselect-hook 'f-ediff-org-fold-tree)
|
||||||
:bind
|
:bind
|
||||||
|
Loading…
Reference in New Issue
Block a user