Skip to content

Commit

Permalink
feat(dashboard): add dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Mar 30, 2023
1 parent 7675c7a commit f0d5a10
Show file tree
Hide file tree
Showing 3 changed files with 172 additions and 0 deletions.
Binary file added assets/images/minemacs.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
156 changes: 156 additions & 0 deletions assets/images/minemacs.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions core/me-core-ui.el
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,22 @@ Useful for keeping track of the enabled theme."
(use-package apropospriate-theme
:straight t)

(use-package dashboard
:straight t
:init
(setq initial-buffer-choice #'dashboard-open)
(+map! "oD" #'dashboard-open)
:custom
(dashboard-set-heading-icons t)
(dashboard-set-file-icons t)
(dashboard-center-content t)
(dashboard-banner-ascii "MinEmacs")
(dashboard-banner-logo-title "Welcome to MinEmacs!")
(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")))

(use-package doom-modeline
:straight t
:hook (minemacs-after-startup . doom-modeline-mode)
Expand Down

0 comments on commit f0d5a10

Please sign in to comment.