Created
September 1, 2020 09:31
-
-
Save mskorzhinskiy/8076d3a82fb78650088b7fa7243f08aa to your computer and use it in GitHub Desktop.
Doom emacs org-mode ricing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Font | |
(setq doom-font "Iosevka-9") | |
;; Hide signs like "~" or "_" or "*" | |
(setq org-hide-emphasis-markers t) | |
;; Don't align tags | |
(setq org-tags-column 0) | |
;; Increase indenation in org-indent | |
(setq org-indent-indentation-per-level 6) | |
(setq org-indent-boundary-char ? ) | |
;; Remove TODO keywrods from org-mode (it will still work in agenda) | |
(set-ligatures! 'org-mode | |
:alist '(("TODO " . "") | |
("NEXT " . "") | |
("PROG " . "") | |
("WAIT " . "") | |
("DONE " . "") | |
("FAIL " . ""))) | |
;; Ellipsis configuration | |
(setq org-ellipsis " ▼") | |
(after! org-superstar | |
;; Every non-TODO headline now have no bullet | |
(setq org-superstar-headline-bullets-list '(" ")) | |
(setq org-superstar-leading-bullet ? ) | |
;; Enable custom bullets for TODO items | |
(setq org-superstar-special-todo-items t) | |
(setq org-superstar-todo-bullet-alist | |
'(("TODO" "☐ ") | |
("NEXT" "✒ ") | |
("PROG" "✰ ") | |
("WAIT" "☕ ") | |
("FAIL" "✘ ") | |
("DONE" "✔ "))) | |
(org-superstar-restart)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment