Skip to content

Commit

Permalink
fix(dashboard): load after evil-collection (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Mar 31, 2023
1 parent f01f80b commit d3b0976
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions core/me-core-ui.el
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,9 @@ Useful for keeping track of the enabled theme."

(use-package dashboard
:straight t
:after evil evil-collection
:demand t
:init
(setq initial-buffer-choice #'dashboard-open)
(+map! "oD" #'dashboard-open)
:custom
(dashboard-set-heading-icons t)
Expand All @@ -134,7 +135,11 @@ Useful for keeping track of the enabled theme."
(dashboard-items '((recents . 5) (projects . 5) (bookmarks . 5)))
(dashboard-image-banner-max-width 600)
(dashboard-projects-backend 'project-el)
(dashboard-startup-banner (concat minemacs-assets-dir "images/minemacs.png")))
(dashboard-startup-banner (concat minemacs-assets-dir "images/minemacs.png"))
:config
;; Ensure setting the keybindings before openning the dashboard
(evil-collection-dashboard-setup)
(dashboard-open))

(use-package doom-modeline
:straight t
Expand Down

0 comments on commit d3b0976

Please sign in to comment.