From 3a6a6390c43efc149622ba8e68faced6aca3a646 Mon Sep 17 00:00:00 2001 From: larstvei Date: Fri, 28 Oct 2022 14:04:26 +0200 Subject: [PATCH] Try out dashboard --- init.org | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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