aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2024-10-28 23:23:00 -0400
committerBardofSprites <[email protected]>2024-10-28 23:23:19 -0400
commitd371fbdaed989549e73911eff986386440c19aec (patch)
treea902922b24c5bd2ba141fcf1bffd48a2cfb30e78
parent127acc3d3716f18449e512dfb4bd2665d921f816 (diff)
org modern and org-num
-rw-r--r--bard-emacs-modules/bard-emacs-org.el13
1 files changed, 12 insertions, 1 deletions
diff --git a/bard-emacs-modules/bard-emacs-org.el b/bard-emacs-modules/bard-emacs-org.el
index f8f73e3..a0f88ab 100644
--- a/bard-emacs-modules/bard-emacs-org.el
+++ b/bard-emacs-modules/bard-emacs-org.el
@@ -15,7 +15,11 @@
("C-c l" . org-store-link)
)
:bind
- (("C-c c" . org-capture)))
+ (("C-c c" . org-capture))
+ :config
+ (setq org-num-max-level 2)
+ :hook
+ ((org-mode . org-num-mode)))
;; Org Variables
(setq bard/org-anki-file "~/Notes/denote/20240729T171836--anki-flashcards__cards_meta.org")
@@ -149,4 +153,11 @@
:config
(require 'org-download))
+(use-package org-modern
+ :ensure t
+ :config
+ (setq org-modern-star nil
+ org-modern-block-name nil)
+ (global-org-modern-mode))
+
(provide 'bard-emacs-org)