Add dashboard back

This commit is contained in:
Evie Litherland-Smith 2023-12-20 10:30:35 +00:00
parent 296d767475
commit ba619e0209

View file

@ -353,6 +353,49 @@ Loading this file is handled automatically on my [[https://git.xenia.me.uk/xenia
(doom-modeline-mode +1))
#+end_src
** Dashboard
#+begin_src emacs-lisp
;; Dashboard
(setq )
(use-package dashboard
:ensure t
:demand
:custom
(dashboard-center-content t)
(dashboard-icon-type 'nerd-icons)
(dashboard-set-heading-icons t)
(dashboard-set-file-icons t)
(dashboard-set-navigator t)
(dashboard-set-init-info t)
(dashboard-startup-banner 'ascii)
(dashboard-projects-backend 'project-el)
(dashboard-projects-switch-function 'project-switch-project)
(dashboard-projects-show-base t)
(dashboard-recentf-show-base 'align)
(dashboard-items '((agenda . 5)
(recents . 5)
(projects . 5)))
(dashboard-heading-icons '((agenda . "nf-oct-calendar")
(recents . "nf-oct-history")
(projects . "nf-oct-rocket")))
(dashboard-banner-ascii (concat " .000000. \n"
" .0. .0. \n"
" .00. .00. \n"
" .000cl. .lc000. \n"
".0 0.\n"
"0. .o0000o. .0\n"
" 00 .0' '0. 00 \n"
" 00 .0 0. 00 \n"
" HHHHH HHHHHHHHHHHH HHHHH \n"
"HHHH HHH HHHHHHHHHHHHHH HHHH\n"
" HHHHHH HHHHHHHHH HHHHHHHH \n"
" HHH HHHH HHHHHHHHH HHHH \n"
" HHH HHHHHH \n"
" HHHHH HH \n"))
:config
(setq initial-buffer-choice 'dashboard-open))
#+end_src
** Darkroom
#+begin_src emacs-lisp
(use-package darkroom