aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-dashboard.el
diff options
context:
space:
mode:
Diffstat (limited to 'modules/init-dashboard.el')
-rw-r--r--modules/init-dashboard.el26
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/init-dashboard.el b/modules/init-dashboard.el
new file mode 100644
index 0000000..4fea7e6
--- /dev/null
+++ b/modules/init-dashboard.el
@@ -0,0 +1,26 @@
+;;; init-dashboard.el --- .Emacs Configuration -*- lexical-binding: t -*-
+;;; Commentary:
+;;
+
+;;; Code:
+(use-package dashboard
+ :pin "MELPA"
+ :ensure t
+ :config
+ (dashboard-setup-startup-hook)
+ (setq dashboard-banner-logo-title "Emacs personal")
+ (setq dashboard-startup-banner 'logo)
+ (setq dashboard-center-content t)
+ (setq dashboard-show-shortcuts t)
+ (setq dashboard-set-heading-icons t)
+ (setq dashboard-set-file-icons t)
+ (setq dashboard-set-footer nil)
+ (setq show-week-agenda-p t)
+ (setq dashboard-items '((recents . 5)
+ (bookmarks . 5)
+ (projects . 5)
+ (agenda . 5)
+ (registers . 5))))
+
+(provide 'init-dashboard)
+;;; init-dashboard.el ends here