六一的部落格


关关难过关关过,前路漫漫亦灿灿。



自定义Emacs打开页面


dashboard-安装

 1(use-package dashboard
 2  :ensure t
 3  :config
 4  (setq dashboard-banner-logo-title "Emacs")
 5  (setq dashboard-startup-banner 'official)
 6  (setq dashboard-center-content t)
 7  (setq dashboard-show-shortcuts nil)
 8  (setq dashboard-items '((recents  . 5)
 9                          (bookmarks . 5)
10                          ;; (projects . 5)
11                          (agenda . 5)
12                          (registers . 5)))
13  (setq dashboard-set-heading-icons t)
14  (setq dashboard-set-file-icons t)
15  (setq dashboard-set-navigator nil)
16  (dashboard-setup-startup-hook)
17  )

dashboard


自定义Emacs打开页面


dashboard-安装

 1(use-package dashboard
 2  :ensure t
 3  :config
 4  (setq dashboard-banner-logo-title "Emacs")
 5  (setq dashboard-startup-banner 'official)
 6  (setq dashboard-center-content t)
 7  (setq dashboard-show-shortcuts nil)
 8  (setq dashboard-items '((recents  . 5)
 9                          (bookmarks . 5)
10                          ;; (projects . 5)
11                          (agenda . 5)
12                          (registers . 5)))
13  (setq dashboard-set-heading-icons t)
14  (setq dashboard-set-file-icons t)
15  (setq dashboard-set-navigator nil)
16  (dashboard-setup-startup-hook)
17  )