|
|
|
@ -37,6 +37,16 @@
|
|
|
|
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
|
|
|
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
|
|
|
(setq display-line-numbers-type t)
|
|
|
|
(setq display-line-numbers-type t)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; this controls the color of bold, italic, underline, verbatim, strikethrough
|
|
|
|
|
|
|
|
(setq org-emphasis-alist
|
|
|
|
|
|
|
|
'(("*" (bold :slant italic :weight black )) ;; this make bold both italic and bold, but not color change
|
|
|
|
|
|
|
|
("/" (italic :foreground "dark salmon" )) ;; italic text, the text will be "dark salmon"
|
|
|
|
|
|
|
|
("_" underline :foreground "cyan" ) ;; underlined text, color is "cyan"
|
|
|
|
|
|
|
|
("=" (:background "snow1" :foreground "deep slate blue" )) ;; background of text is "snow1" and text is "deep slate blue"
|
|
|
|
|
|
|
|
("~" (:background "PaleGreen1" :foreground "dim gray" ))
|
|
|
|
|
|
|
|
("+" (:strike-through nil :foreground "dark orange" ))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(setq org-hide-emphasis-markers t) ;; hides the emphasis markers
|
|
|
|
|
|
|
|
|
|
|
|
;; Here are some additional functions/macros that could help you configure Doom:
|
|
|
|
;; Here are some additional functions/macros that could help you configure Doom:
|
|
|
|
;;
|
|
|
|
;;
|
|
|
|
@ -55,16 +65,6 @@
|
|
|
|
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
|
|
|
|
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
|
|
|
|
;; they are implemented.
|
|
|
|
;; they are implemented.
|
|
|
|
|
|
|
|
|
|
|
|
;; this controls the color of bold, italic, underline, verbatim, strikethrough
|
|
|
|
|
|
|
|
(setq org-emphasis-alist
|
|
|
|
|
|
|
|
'(("*" (bold :slant italic :weight black )) ;; this make bold both italic and bold, but not color change
|
|
|
|
|
|
|
|
("/" (italic :foreground "dark salmon" )) ;; italic text, the text will be "dark salmon"
|
|
|
|
|
|
|
|
("_" underline :foreground "cyan" ) ;; underlined text, color is "cyan"
|
|
|
|
|
|
|
|
("=" (:background "snow1" :foreground "deep slate blue" )) ;; background of text is "snow1" and text is "deep slate blue"
|
|
|
|
|
|
|
|
("~" (:background "PaleGreen1" :foreground "dim gray" ))
|
|
|
|
|
|
|
|
("+" (:strike-through nil :foreground "dark orange" ))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(setq org-hide-emphasis-markers t) ;; hides the emphasis markers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; org-roam-server
|
|
|
|
;; org-roam-server
|
|
|
|
(setq org-roam-server-host "127.0.0.1"
|
|
|
|
(setq org-roam-server-host "127.0.0.1"
|
|
|
|
@ -81,8 +81,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
(setq ispell-program-name "aspell")
|
|
|
|
(setq ispell-program-name "aspell")
|
|
|
|
(setq ispell-extra-args '("--sug-mode=ultra" "--lang=en_US"))
|
|
|
|
(setq ispell-extra-args '("--sug-mode=ultra" "--lang=en_US"))
|
|
|
|
(setq spell-fu-directory "~/+STORE/dictionary") ;; Please create this directory manually.
|
|
|
|
;;(setq spell-fu-directory "~/+STORE/dictionary") ;; Please create this directory manually.
|
|
|
|
(setq ispell-personal-dictionary "~/+STORE/dictionary/.pws")
|
|
|
|
;;(setq ispell-personal-dictionary "~/+STORE/dictionary/.pws")
|
|
|
|
|
|
|
|
|
|
|
|
(setq writeroom-fullscreen-effect t)
|
|
|
|
(setq writeroom-fullscreen-effect t)
|
|
|
|
(setq org-fancy-priorities-list '((?A . "❗")
|
|
|
|
(setq org-fancy-priorities-list '((?A . "❗")
|
|
|
|
@ -241,3 +241,22 @@
|
|
|
|
"*/.auctex-auto"
|
|
|
|
"*/.auctex-auto"
|
|
|
|
"*/_region_.log"
|
|
|
|
"*/_region_.log"
|
|
|
|
"*/_region_.tex"))
|
|
|
|
"*/_region_.tex"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(use-package! org-super-agenda
|
|
|
|
|
|
|
|
:after org-agenda
|
|
|
|
|
|
|
|
:init
|
|
|
|
|
|
|
|
(setq org-super-agenda-groups '((:name "Today"
|
|
|
|
|
|
|
|
:time-grid t
|
|
|
|
|
|
|
|
:scheduled today)
|
|
|
|
|
|
|
|
(:name "Due Today"
|
|
|
|
|
|
|
|
:deadline today)
|
|
|
|
|
|
|
|
(:name "Important"
|
|
|
|
|
|
|
|
:priority "A")
|
|
|
|
|
|
|
|
(:name "Overdue"
|
|
|
|
|
|
|
|
:deadline past)
|
|
|
|
|
|
|
|
(:name "Due Soon"
|
|
|
|
|
|
|
|
:deadline future)
|
|
|
|
|
|
|
|
(:name "Big Outcomes"
|
|
|
|
|
|
|
|
:tag "bo")))
|
|
|
|
|
|
|
|
:config
|
|
|
|
|
|
|
|
(org-super-agenda-mode))
|
|
|
|
|