Homepage config

This commit is contained in:
Curt Spark 2020-04-13 01:51:58 +01:00
parent f3e7d2c442
commit b7b34debe0
1 changed files with 30 additions and 0 deletions

View File

@ -101,6 +101,36 @@ Emacs Dashboard Config :
(projects . 5) (projects . 5)
(agenda . 5) (agenda . 5)
(registers . 5))) (registers . 5)))
;; To show agenda for the upcoming seven days set the variable show-week-agenda-p to t.
(setq show-week-agenda-p t)
;; Note that setting list-size for the agenda list is intentionally ignored; all agenda items for the current day will be displayed.
;; To customize which categories from the agenda items should be visible in the dashboard set the dashboard-org-agenda-categories to the list of categories you need.
;; (setq dashboard-org-agenda-categories '("Tasks" "Appointments"))
;; To add icons to the widget headings and their items:
(setq dashboard-set-heading-icons t)
(setq dashboard-set-file-icons t)
;; To show navigator below the banner:
(setq dashboard-set-navigator t)
;; To customize the buttons of the navigator like this:
;; Format: "(icon title help action face prefix suffix)"
(setq dashboard-navigator-buttons
`(;; line1
((,(all-the-icons-octicon "mark-github" :height 1.1 :v-adjust 0.0)
"Homepage"
"Browse homepage"
(lambda (&rest _) (browse-url "https://gitlab.com/bloxiebird/linux-emacs-configuration")))
("★" "Star" "Show stars" (lambda (&rest _) (show-stars)) warning)
("?" "" "?/h" #'show-help nil "<" ">"))
))
#+END_SRC #+END_SRC
** EXWM ** EXWM
Emacs X Window Manager Emacs X Window Manager