Replace org-superstar with org-modern

This commit is contained in:
coolneng 2022-09-10 03:45:53 +02:00
parent b48ffef269
commit 2398612a6c
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
3 changed files with 10 additions and 5 deletions

View File

@ -1,8 +1,7 @@
;;; ~/.doom.d/+org.el -*- lexical-binding: t; -*- ;;; ~/.doom.d/+org.el -*- lexical-binding: t; -*-
;; Org mode configuration ;; Org mode configuration
;; ;;
(setq org-ellipsis "" (setq org-ellipsis "")
org-superstar-headline-bullets-list '(""))
;; Cycle through header visibility ;; Cycle through header visibility
(after! evil-org (after! evil-org
(remove-hook 'org-tab-first-hook #'+org-cycle-only-current-subtree-h)) (remove-hook 'org-tab-first-hook #'+org-cycle-only-current-subtree-h))
@ -117,3 +116,8 @@
;; Show images by default with a limited width ;; Show images by default with a limited width
(setq org-startup-with-inline-images t (setq org-startup-with-inline-images t
org-image-actual-width 600) org-image-actual-width 600)
;; Use a modern look
(use-package! org-modern
:hook (org-mode . org-modern-mode)
:config
(setq org-modern-star [""]))

View File

@ -152,8 +152,8 @@
;;+jupyter ; jupyter support for babel ;;+jupyter ; jupyter support for babel
+pandoc ; export-with-pandoc support +pandoc ; export-with-pandoc support
+pomodoro ; be fruitful with the tomato technique +pomodoro ; be fruitful with the tomato technique
+present ; using org-mode for presentations +present) ; using org-mode for presentations
+pretty) ;;+pretty)
;;perl ; write code no one else can comprehend ;;perl ; write code no one else can comprehend
;;php ; perl's insecure younger brother ;;php ; perl's insecure younger brother
;;plantuml ; diagrams for confusing people more ;;plantuml ; diagrams for confusing people more

View File

@ -11,3 +11,4 @@
(package! elfeed-protocol) (package! elfeed-protocol)
(package! magit-delta) (package! magit-delta)
(package! engrave-faces) (package! engrave-faces)
(package! org-modern)