Add dashboard
This commit is contained in:
parent
e66773991b
commit
d590aa16a8
1
init.el
1
init.el
@ -80,6 +80,7 @@
|
||||
(require 'init-indent-guides)
|
||||
(require 'init-icons)
|
||||
(require 'init-neotree)
|
||||
(require 'init-dashboard)
|
||||
;; Tools
|
||||
(require 'init-apache)
|
||||
(require 'init-company)
|
||||
|
26
modules/init-dashboard.el
Normal file
26
modules/init-dashboard.el
Normal file
@ -0,0 +1,26 @@
|
||||
;;; init-dashboard.el --- .Emacs Configuration -*- lexical-binding: t -*-
|
||||
;;; Commentary:
|
||||
;;
|
||||
|
||||
;;; Code:
|
||||
(use-package dashboard
|
||||
:pin "MELPA"
|
||||
:ensure t
|
||||
:config
|
||||
(dashboard-setup-startup-hook)
|
||||
(setq dashboard-banner-logo-title "Emacs personal")
|
||||
(setq dashboard-startup-banner 'logo)
|
||||
(setq dashboard-center-content t)
|
||||
(setq dashboard-show-shortcuts t)
|
||||
(setq dashboard-set-heading-icons t)
|
||||
(setq dashboard-set-file-icons t)
|
||||
(setq dashboard-set-footer nil)
|
||||
(setq show-week-agenda-p t)
|
||||
(setq dashboard-items '((recents . 5)
|
||||
(bookmarks . 5)
|
||||
(projects . 5)
|
||||
(agenda . 5)
|
||||
(registers . 5))))
|
||||
|
||||
(provide 'init-dashboard)
|
||||
;;; init-dashboard.el ends here
|
Loading…
x
Reference in New Issue
Block a user