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)
(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
direnv ; direnv integration
editorconfig ; EditorConfig Emacs Plugin
@ -568,8 +567,10 @@
* Dashboard
#+begin_src emacs-lisp
(require 'dashboard)
(dashboard-setup-startup-hook)
;; A startup screen extracted from Spacemacs
(use-package dashboard
:config
(setq dashboard-banner-logo-title nil
dashboard-center-content t
dashboard-set-footer nil
@ -577,6 +578,8 @@
dashboard-items '((projects . 15)
(recents . 15)
(bookmarks . 5)))
(dashboard-setup-startup-hook))
#+end_src
* Projectile