use-package dashboard

This commit is contained in:
larstvei 2023-06-11 22:39:46 +02:00
parent 449fb2617b
commit b1521a900b

View File

@ -207,8 +207,7 @@
(let* ((package--builtins nil) (let* ((package--builtins nil)
(packages (packages
'(dashboard ; A startup screen extracted from Spacemacs '(define-word ; display the definition of word at point
define-word ; display the definition of word at point
diff-hl ; Highlight uncommitted changes using VC diff-hl ; Highlight uncommitted changes using VC
direnv ; direnv integration direnv ; direnv integration
editorconfig ; EditorConfig Emacs Plugin editorconfig ; EditorConfig Emacs Plugin
@ -568,15 +567,19 @@
* Dashboard * Dashboard
#+begin_src emacs-lisp #+begin_src emacs-lisp
(require 'dashboard)
(dashboard-setup-startup-hook) ;; A startup screen extracted from Spacemacs
(setq dashboard-banner-logo-title nil (use-package dashboard
dashboard-center-content t :config
dashboard-set-footer nil (setq dashboard-banner-logo-title nil
dashboard-page-separator "\n\n\n" dashboard-center-content t
dashboard-items '((projects . 15) dashboard-set-footer nil
(recents . 15) dashboard-page-separator "\n\n\n"
(bookmarks . 5))) dashboard-items '((projects . 15)
(recents . 15)
(bookmarks . 5)))
(dashboard-setup-startup-hook))
#+end_src #+end_src
* Projectile * Projectile