mirror of
https://github.com/larstvei/dot-emacs.git
synced 2024-11-26 07:28:31 +00:00
Try out dashboard
This commit is contained in:
parent
7abf06a7f0
commit
3a6a6390c4
15
init.org
15
init.org
@ -189,6 +189,7 @@
|
|||||||
company-coq ; A collection of extensions PG's Coq mode
|
company-coq ; A collection of extensions PG's Coq mode
|
||||||
counsel ; Various completion functions using Ivy
|
counsel ; Various completion functions using Ivy
|
||||||
counsel-projectile ; Ivy integration for Projectile
|
counsel-projectile ; Ivy integration for Projectile
|
||||||
|
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
|
||||||
doom-themes ; An opinionated pack of modern color-themes
|
doom-themes ; An opinionated pack of modern color-themes
|
||||||
@ -446,6 +447,20 @@
|
|||||||
(remove-hook 'olivetti-mode-on-hook 'visual-line-mode))
|
(remove-hook 'olivetti-mode-on-hook 'visual-line-mode))
|
||||||
#+END_SRC
|
#+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
|
** Ivy
|
||||||
|
|
||||||
[[http://oremacs.com/swiper/][Ivy]] is a completion system, giving you completions and fuzzy search whenever
|
[[http://oremacs.com/swiper/][Ivy]] is a completion system, giving you completions and fuzzy search whenever
|
||||||
|
Loading…
Reference in New Issue
Block a user