summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Kosarek <matt.kosarek@canonical.com>2025-03-12 09:41:38 -0400
committerMatthew Kosarek <matt.kosarek@canonical.com>2025-03-12 09:41:38 -0400
commited4fb4672a92ba573e12756243653ef62c923fec (patch)
tree24a1533d5f36b59d0dc72f13aed4c2639e0076ec
parent0acfbfdbb332e8591ac0e6ebacb2f416abcccca7 (diff)
feature: Including org-modern for org modeHEADmaster
-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))