Put org module in init.el
This commit is contained in:
parent
6c4ddc7718
commit
9b4b59cca0
2 changed files with 15 additions and 19 deletions
|
|
@ -142,7 +142,21 @@
|
||||||
:custom
|
:custom
|
||||||
(completion-styles '(orderless basic))
|
(completion-styles '(orderless basic))
|
||||||
(completion-category-overrides '((file (styles basic partial-completion)))))
|
(completion-category-overrides '((file (styles basic partial-completion)))))
|
||||||
|
|
||||||
|
(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))
|
||||||
|
|
||||||
(use-package rainbow-delimiters
|
(use-package rainbow-delimiters
|
||||||
:hook
|
:hook
|
||||||
((emacs-lisp-mode . rainbow-delimiters-mode)
|
((emacs-lisp-mode . rainbow-delimiters-mode)
|
||||||
|
|
@ -166,7 +180,5 @@
|
||||||
(setq vertico-cycle t))
|
(setq vertico-cycle t))
|
||||||
|
|
||||||
(require 'tobmacs-editor)
|
(require 'tobmacs-editor)
|
||||||
(require 'tobmacs-languages)
|
|
||||||
(require 'tobmacs-org)
|
|
||||||
(require 'tobmacs-vc)
|
(require 'tobmacs-vc)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
(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)
|
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue