Remove dashboard package

This commit is contained in:
Evie Litherland-Smith 2024-03-11 15:17:44 +00:00
parent ce8fe8a57f
commit 49bec8a9cb

View file

@ -234,38 +234,6 @@ Removed in favour of [[https://github.com/catppuccin/emacs][Catppuccin (emacs)]]
:config
(doom-modeline-mode +1))
#+end_src
* Dashboard
#+begin_src emacs-lisp
(use-package dashboard
:ensure t
:custom
(dashboard-banner-logo-title nil)
(dashboard-banner-ascii "EMACS")
(dashboard-startup-banner (locate-user-emacs-file "banners/ansi_shadow.txt"))
(dashboard-center-content t)
(dashboard-vertical-center-content t)
(dashboard-show-shortcuts t)
(dashboard-set-init-info t)
(dashboard-icon-type 'nerd-icons)
(dashboard-set-file-icons t)
(dashboard-set-heading-icons t)
(dashboard-projects-backend 'project-el)
(dashboard-week-agenda t)
(dashboard-agenda-sort-strategy '(todo-state-up time-up))
(dashboard-items '((agenda . 5)
(recents . 5)
(bookmarks . 5)))
(dashboard-heading-icons '((recents . "nf-oct-history")
(bookmarks . "nf-oct-bookmark")
(agenda . "nf-oct-calendar")
(projects . "nf-oct-rocket")
(registers . "nf-oct-database")))
:init
(setq initial-buffer-choice #'(lambda ()
(get-buffer-create "*dashboard*")))
:config
(dashboard-setup-startup-hook))
#+end_src
* Zone
#+begin_src emacs-lisp :tangle yes
(use-package zone