mirror of
https://github.com/larstvei/dot-emacs.git
synced 2024-11-26 07:28:31 +00:00
use-package dashboard
This commit is contained in:
parent
449fb2617b
commit
b1521a900b
25
init.org
25
init.org
@ -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,15 +567,19 @@
|
||||
* Dashboard
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(require 'dashboard)
|
||||
(dashboard-setup-startup-hook)
|
||||
(setq dashboard-banner-logo-title nil
|
||||
dashboard-center-content t
|
||||
dashboard-set-footer nil
|
||||
dashboard-page-separator "\n\n\n"
|
||||
dashboard-items '((projects . 15)
|
||||
(recents . 15)
|
||||
(bookmarks . 5)))
|
||||
|
||||
;; A startup screen extracted from Spacemacs
|
||||
(use-package dashboard
|
||||
:config
|
||||
(setq dashboard-banner-logo-title nil
|
||||
dashboard-center-content t
|
||||
dashboard-set-footer nil
|
||||
dashboard-page-separator "\n\n\n"
|
||||
dashboard-items '((projects . 15)
|
||||
(recents . 15)
|
||||
(bookmarks . 5)))
|
||||
(dashboard-setup-startup-hook))
|
||||
|
||||
#+end_src
|
||||
|
||||
* Projectile
|
||||
|
Loading…
Reference in New Issue
Block a user