16 lines
332 B
EmacsLisp
16 lines
332 B
EmacsLisp
(use-package org
|
|
:defer t
|
|
:config
|
|
(setq org-auto-align-tags nil
|
|
org-tags-column 0
|
|
org-special-ctrl-a/e t
|
|
org-pretty-entities t
|
|
org-hide-emphasis-markers t
|
|
org-startup-with-inline-images t))
|
|
|
|
(use-package org-modern
|
|
:init
|
|
(global-org-modern-mode))
|
|
|
|
(provide 'tobmacs-org)
|
|
|