Remove dashboard package

This commit is contained in:
Evie Litherland-Smith 2025-01-20 10:29:42 +00:00
parent 237d38b4ca
commit b0620845d6

26
init.el
View file

@ -121,32 +121,6 @@
(set-face-attribute 'doom-modeline nil :weight 'normal)
(set-face-attribute 'doom-modeline-buffer-path nil :slant 'normal))
(use-package dashboard
:if (package-installed-p 'dashboard)
:functions (dashboard-open
dashboard-setup-startup-hook)
:bind (("C-c w d" . dashboard-open))
:custom
(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 '(time-up))
(dashboard-agenda-tags-format 'ignore)
(dashboard-items '((agenda . 20)))
(dashboard-heading-icons '((recents . "nf-oct-history")
(bookmarks . "nf-oct-bookmark")
(agenda . "nf-oct-calendar")
(projects . "nf-oct-rocket")
(registers . "nf-oct-database")))
:init
(dashboard-setup-startup-hook))
(global-visual-line-mode +1)
(setopt visual-line-fringe-indicators '(left-curly-arrow right-curly-arrow))