diff --git a/init.org b/init.org index 249f44a..5d18dbb 100644 --- a/init.org +++ b/init.org @@ -189,6 +189,7 @@ company-coq ; A collection of extensions PG's Coq mode counsel ; Various completion functions using Ivy counsel-projectile ; Ivy integration for Projectile + dashboard ; A startup screen extracted from Spacemacs define-word ; display the definition of word at point diff-hl ; Highlight uncommitted changes using VC doom-themes ; An opinionated pack of modern color-themes @@ -446,6 +447,20 @@ (remove-hook 'olivetti-mode-on-hook 'visual-line-mode)) #+END_SRC +** 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))) + #+end_src + ** Ivy [[http://oremacs.com/swiper/][Ivy]] is a completion system, giving you completions and fuzzy search whenever