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)
|
(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
|
||||||
|
Loading…
Reference in New Issue
Block a user