diff options
author | Matthew Kosarek <matt.kosarek@canonical.com> | 2025-03-12 09:41:38 -0400 |
---|---|---|
committer | Matthew Kosarek <matt.kosarek@canonical.com> | 2025-03-12 09:41:38 -0400 |
commit | ed4fb4672a92ba573e12756243653ef62c923fec (patch) | |
tree | 24a1533d5f36b59d0dc72f13aed4c2639e0076ec /lisp/org-custom.el | |
parent | 0acfbfdbb332e8591ac0e6ebacb2f416abcccca7 (diff) |
Diffstat (limited to 'lisp/org-custom.el')
-rw-r--r-- | lisp/org-custom.el | 27 |
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)) |