update: 20210217 config super agenda

master
Francis Kore 5 years ago
parent 9ddc764d95
commit c0b69722d1

@ -37,6 +37,16 @@
;; numbers are disabled. For relative line numbers, set this to `relative'.
(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:
;;
@ -55,16 +65,6 @@
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
;; 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
(setq org-roam-server-host "127.0.0.1"
@ -81,8 +81,8 @@
(setq ispell-program-name "aspell")
(setq ispell-extra-args '("--sug-mode=ultra" "--lang=en_US"))
(setq spell-fu-directory "~/+STORE/dictionary") ;; Please create this directory manually.
(setq ispell-personal-dictionary "~/+STORE/dictionary/.pws")
;;(setq spell-fu-directory "~/+STORE/dictionary") ;; Please create this directory manually.
;;(setq ispell-personal-dictionary "~/+STORE/dictionary/.pws")
(setq writeroom-fullscreen-effect t)
(setq org-fancy-priorities-list '((?A . "")
@ -241,3 +241,22 @@
"*/.auctex-auto"
"*/_region_.log"
"*/_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))

@ -35,7 +35,7 @@
hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
;;hydra
;;indent-guides ; highlighted indent columns
ligatures ; ligatures and symbols to make your code pretty again
(ligatures +extra +fira) ; ligatures and symbols to make your code pretty again
;;minimap ; show a map of the code on the side
modeline ; snazzy, Atom-inspired modeline, plus API
;;nav-flash ; blink cursor line after big motions
@ -76,7 +76,7 @@
;;eshell ; the elisp shell that works everywhere
;;shell ; simple shell REPL for Emacs
;;term ; basic terminal emulator for Emacs
vterm ; the best terminal emulation in Emacs
;;vterm ; the best terminal emulation in Emacs
:checkers
syntax ; tasing you for every semicolon you forget

@ -49,5 +49,5 @@
;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
;(unpin! t)
(package! zetteldeft)
(package! org-roam-server)
(package! org-super-agenda)

Loading…
Cancel
Save