aboutsummaryrefslogtreecommitdiff
path: root/bard-emacs-modules
diff options
context:
space:
mode:
Diffstat (limited to 'bard-emacs-modules')
-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)