diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-08-30 12:46:43 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-08-30 12:46:43 +0100 |
commit | b5c2acdbe9c4d10627d902a5dda0c2b1804771ff (patch) | |
tree | d022ade45a89b5629f5b8f70cccd3c32c7c04340 /.emacs.d/lisp | |
parent | 4b475ca1abea3e7b81865c15a9da433fbc782c5d (diff) | |
download | dotfiles-b5c2acdbe9c4d10627d902a5dda0c2b1804771ff.tar.gz |
Remove dashboard
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-dashboard.el | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/.emacs.d/lisp/init-dashboard.el b/.emacs.d/lisp/init-dashboard.el deleted file mode 100644 index 63cacc6..0000000 --- a/.emacs.d/lisp/init-dashboard.el +++ /dev/null @@ -1,22 +0,0 @@ -;;; init-dashboard.el --- Dashboard Configuration File -*- lexical-binding: t -*- -;;; Commentary: -;;; Code: - -(use-package dashboard - :init - (setq dashboard-center-content t - dashboard-startup-banner 'logo - dashboard-set-footer nil - dashboard-week-agenda t - dashboard-projects-backend 'project-el - dashboard-projects-switch-function 'switch-project - dashboard-items '((recents . 15) - (bookmarks . 5) - (projects . 5) - (agenda . 5) - (registers . 5))) - :config - (dashboard-setup-startup-hook)) - -(provide 'init-dashboard) -;;; init-dashboard.el ends here |