- Remove init-workspace.el and redundant UI/font/autothemer setup - Add init-prog.el for programming language configs (treesit, lua, scheme, etc.) - Defer org-refile loading via org-mode hook - Adjust load order in init.el, add init-proxy - Fix indentation and formatting issues
24 lines
1.2 KiB
EmacsLisp
24 lines
1.2 KiB
EmacsLisp
;;; init-dashboard.el --- dashboard -*- lexical-binding: t -*-
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(use-package dashboard
|
|
:demand t
|
|
:config
|
|
(dashboard-setup-startup-hook)
|
|
(setq dashboard-banner-logo-title (format "%s" emacs-version))
|
|
(setq dashboard-banner-ascii " ##### # # # # ####### # # # ##### ##### \n# # ## # # # # ## ## # # # # # # \n# # # # # # # # # # # # # # # \n# #### # # # # # ##### # # # # # # ##### \n# # # # # # # # # # ####### # # \n# # # ## # # # # # # # # # # # \n ##### # # ##### ####### # # # # ##### ##### ")
|
|
(setq dashboard-startup-banner 'ascii)
|
|
(setq dashboard-footer-messages '("hello"))
|
|
(setq dashboard-center-content t)
|
|
(setq dashboard-navigation-cycle t)
|
|
(setq dashboard-items '((recents . 15)
|
|
(bookmarks . 5)
|
|
(projects . 5)))
|
|
(setq dashboard-item-shortcuts '((recents . "r") (bookmarks . "b") (projects . "p") (agenda . "a") (registers . "e"))))
|
|
|
|
(provide 'init-dashboard)
|
|
;;; init-dashboard.el ends here
|