Playing around a bit with org-agenda.

This commit is contained in:
Derek Taylor 2023-01-07 19:30:08 -06:00
parent e240bfd925
commit 94fa54d534
2 changed files with 2 additions and 6 deletions

View File

@ -115,7 +115,7 @@ List of keybindings (SPC h b b)")
(setq dashboard-startup-banner "~/.config/doom/doom-emacs-dash.png") ;; use custom image as banner
(setq dashboard-center-content nil) ;; set to 't' for centered content
(setq dashboard-items '((recents . 5)
(agenda . 5 )
;; (agenda . 5 ) ;; Agenda crashes Dashboard if using weird characters.
(bookmarks . 5)
(projects . 5)
(registers . 5)))
@ -391,7 +391,6 @@ List of keybindings (SPC h b b)")
:desc "Org babel tangle" "m B" #'org-babel-tangle)
(after! org
(setq org-directory "~/nc/Org/"
org-agenda-files '("~/nc/Org/agenda.org")
org-default-notes-file (expand-file-name "notes.org" org-directory)
org-ellipsis ""
org-superstar-headline-bullets-list '("" "" "" "" "" "" "")

View File

@ -14,7 +14,6 @@
- [[#calendar][CALENDAR]]
- [[#centaur-tabs][CENTAUR-TABS]]
- [[#clippy][CLIPPY]]
- [[#dashboard][DASHBOARD]]
- [[#configuring-dashboard][Configuring Dashboard]]
- [[#dashboard-in-emacsclient][Dashboard in Emacsclient]]
- [[#dired][DIRED]]
@ -246,7 +245,6 @@ Gives us a popup box with "Clippy, the paper clip". You can make him say various
#+end_src
* DASHBOARD
Emacs Dashboard is an extensible startup screen showing you recent files, bookmarks, agenda items and an Emacs banner.
** Configuring Dashboard
@ -266,7 +264,7 @@ List of keybindings (SPC h b b)")
(setq dashboard-startup-banner "~/.config/doom/doom-emacs-dash.png") ;; use custom image as banner
(setq dashboard-center-content nil) ;; set to 't' for centered content
(setq dashboard-items '((recents . 5)
(agenda . 5 )
;; (agenda . 5 ) ;; Agenda crashes Dashboard if using weird characters.
(bookmarks . 5)
(projects . 5)
(registers . 5)))
@ -800,7 +798,6 @@ I wrapped most of this block in (after! org). Without this, my settings might b
:desc "Org babel tangle" "m B" #'org-babel-tangle)
(after! org
(setq org-directory "~/nc/Org/"
org-agenda-files '("~/nc/Org/agenda.org")
org-default-notes-file (expand-file-name "notes.org" org-directory)
org-ellipsis " ▼ "
org-superstar-headline-bullets-list '("◉" "●" "○" "◆" "●" "○" "◆")