summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/org-custom.el27
1 files changed, 24 insertions, 3 deletions
diff --git a/lisp/org-custom.el b/lisp/org-custom.el
index 3de6684..2af529a 100644
--- a/lisp/org-custom.el
+++ b/lisp/org-custom.el
@@ -26,11 +26,32 @@
`(org-document-title ((t (,@headline ,@variable-tuple :height 1.3 :weight bold))))))
- (use-package org-bullets
+ ;; (use-package org-bullets
+ ;; :ensure t
+ ;; :config
+ ;; (org-bullets-mode 1)
+ ;; )
+
+ (use-package org-modern
:ensure t
:config
- (org-bullets-mode 1)
- )
+ (global-org-modern-mode))
+
+ (setq org-ellipsis "…")
+ (set-face-attribute 'org-ellipsis nil :inherit 'default :box nil)
+
+ (setq
+ ;; Edit settings
+ org-auto-align-tags nil
+ org-tags-column 0
+ org-catch-invisible-edits 'show-and-error
+ org-special-ctrl-a/e t
+ org-insert-heading-respect-content t
+
+ ;; Org styling, hide markup etc.
+ org-hide-emphasis-markers t
+ org-pretty-entities t
+ org-agenda-tags-column 0)
(org-indent-mode 1)
(visual-line-mode 1))