about summary refs log tree commit diff stats
path: root/emacs-prelude/personal/lisp/init-dashboard.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs-prelude/personal/lisp/init-dashboard.el')
-rw-r--r--emacs-prelude/personal/lisp/init-dashboard.el15
1 files changed, 15 insertions, 0 deletions
diff --git a/emacs-prelude/personal/lisp/init-dashboard.el b/emacs-prelude/personal/lisp/init-dashboard.el
new file mode 100644
index 0000000..7256c37
--- /dev/null
+++ b/emacs-prelude/personal/lisp/init-dashboard.el
@@ -0,0 +1,15 @@
+(prelude-require-package 'dashboard)
+(use-package dashboard
+  :init
+  (setq dashboard-center-content t
+        dashboard-set-footer nil
+        dashboard-items '((recents  . 5)
+                        (bookmarks . 5)
+                        (projects . 5)
+                        (agenda . 5)
+                        (registers . 5)))
+  :config
+  (dashboard-setup-startup-hook))
+
+(provide 'init-dashboard)
+