Disable org-modern and move my gray stars into main org block
This commit is contained in:
parent
111bad9ecd
commit
fed92a6fb8
@ -699,6 +699,15 @@ See https://emacs.stackexchange.com/questions/2538/how-to-define-additional-mode
|
||||
(defun insert-ï ()
|
||||
(interactive)
|
||||
(insert 239)) ; this is a lowercase I with an umlaut. Used for the word `naiive'.
|
||||
(defun mitch/org-grayify-stars ()
|
||||
"Make the `*' characters in Org headlines look like the `#'s in markdown."
|
||||
(interactive)
|
||||
(font-lock-add-keywords
|
||||
nil
|
||||
`((,(rx bol (+ "*")) . ;; shadow
|
||||
font-lock-doc-markup-face))))
|
||||
(add-hook 'org-mode-hook
|
||||
#'mitch/org-grayify-stars 90)
|
||||
:hook
|
||||
(org-mode . turn-off-line-numbers)
|
||||
(org-mode . org-vw-mode)
|
||||
@ -1218,30 +1227,19 @@ Taken from https://howardism.org/Technical/Emacs/eshell-why.html"
|
||||
(guid (seq uuid)))
|
||||
(rxt-elisp-to-pcre (rx ,@expressions)))))
|
||||
|
||||
(use-package org-modern
|
||||
:after org
|
||||
:custom
|
||||
(org-modern-tag nil)
|
||||
(org-modern-todo nil)
|
||||
(org-modern-block-name nil)
|
||||
(org-modern-table nil)
|
||||
(org-modern-hide-stars nil)
|
||||
(org-modern-star nil)
|
||||
;; (org-modern-block-fringe 16)
|
||||
:hook (org-mode . org-modern-mode)
|
||||
:config
|
||||
(defun mitch/org-grayify-stars ()
|
||||
"Make the `*' characters in Org headlines look like the `#'s in markdown."
|
||||
(interactive)
|
||||
(font-lock-add-keywords
|
||||
nil
|
||||
`((,(rx bol (+ "*")) . ;; shadow
|
||||
font-lock-doc-markup-face))))
|
||||
(add-hook 'org-mode-hook
|
||||
#'mitch/org-grayify-stars 90)
|
||||
;; (advice-add 'org-modern--make-font-lock-keywords
|
||||
;; :after #'mitch/org-grayify-stars)
|
||||
)
|
||||
;; (use-package org-modern
|
||||
;; :after org
|
||||
;; :custom
|
||||
;; (org-modern-tag nil)
|
||||
;; (org-modern-todo nil)
|
||||
;; (org-modern-block-name nil)
|
||||
;; (org-modern-table nil)
|
||||
;; (org-modern-hide-stars nil)
|
||||
;; (org-modern-star nil)
|
||||
;; ;; (org-modern-block-fringe 16)
|
||||
;; :hook (org-mode . org-modern-mode)
|
||||
;; :config
|
||||
;; )
|
||||
|
||||
;; svg-tags; disabled because reasons
|
||||
;; (use-package svg-tag-mode
|
||||
|
Loading…
Reference in New Issue
Block a user