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
+1 -2
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-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-center-content nil) ;; set to 't' for centered content
(setq dashboard-items '((recents . 5) (setq dashboard-items '((recents . 5)
(agenda . 5 ) ;; (agenda . 5 ) ;; Agenda crashes Dashboard if using weird characters.
(bookmarks . 5) (bookmarks . 5)
(projects . 5) (projects . 5)
(registers . 5))) (registers . 5)))
@@ -391,7 +391,6 @@ List of keybindings (SPC h b b)")
:desc "Org babel tangle" "m B" #'org-babel-tangle) :desc "Org babel tangle" "m B" #'org-babel-tangle)
(after! org (after! org
(setq org-directory "~/nc/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-default-notes-file (expand-file-name "notes.org" org-directory)
org-ellipsis "" org-ellipsis ""
org-superstar-headline-bullets-list '("" "" "" "" "" "" "") org-superstar-headline-bullets-list '("" "" "" "" "" "" "")
+1 -4
View File
@@ -14,7 +14,6 @@
- [[#calendar][CALENDAR]] - [[#calendar][CALENDAR]]
- [[#centaur-tabs][CENTAUR-TABS]] - [[#centaur-tabs][CENTAUR-TABS]]
- [[#clippy][CLIPPY]] - [[#clippy][CLIPPY]]
- [[#dashboard][DASHBOARD]]
- [[#configuring-dashboard][Configuring Dashboard]] - [[#configuring-dashboard][Configuring Dashboard]]
- [[#dashboard-in-emacsclient][Dashboard in Emacsclient]] - [[#dashboard-in-emacsclient][Dashboard in Emacsclient]]
- [[#dired][DIRED]] - [[#dired][DIRED]]
@@ -246,7 +245,6 @@ Gives us a popup box with "Clippy, the paper clip". You can make him say various
#+end_src #+end_src
* DASHBOARD
Emacs Dashboard is an extensible startup screen showing you recent files, bookmarks, agenda items and an Emacs banner. Emacs Dashboard is an extensible startup screen showing you recent files, bookmarks, agenda items and an Emacs banner.
** Configuring Dashboard ** 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-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-center-content nil) ;; set to 't' for centered content
(setq dashboard-items '((recents . 5) (setq dashboard-items '((recents . 5)
(agenda . 5 ) ;; (agenda . 5 ) ;; Agenda crashes Dashboard if using weird characters.
(bookmarks . 5) (bookmarks . 5)
(projects . 5) (projects . 5)
(registers . 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) :desc "Org babel tangle" "m B" #'org-babel-tangle)
(after! org (after! org
(setq org-directory "~/nc/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-default-notes-file (expand-file-name "notes.org" org-directory)
org-ellipsis "" org-ellipsis ""
org-superstar-headline-bullets-list '("" "" "" "" "" "" "") org-superstar-headline-bullets-list '("" "" "" "" "" "" "")