feat: dashboard
This commit is contained in:
parent
0e401daae1
commit
5635210c9d
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,6 +6,7 @@ transient/
|
|||
user/
|
||||
|
||||
bookmarks
|
||||
recentf
|
||||
.last-package-update-day
|
||||
.lsp*
|
||||
org-roam.db*
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
(use-package autothemer)
|
||||
(use-package graphite-theme
|
||||
:straight (:package "graphite" :host github
|
||||
:repo "devraza/graphite-emacs"))
|
||||
:repo "devraza/graphite-emacs"))
|
||||
(load-theme 'graphite t)
|
||||
|
||||
;; rainbow-mode - Colourful colour codes!
|
||||
|
|
|
@ -38,6 +38,15 @@
|
|||
completion-category-defaults nil
|
||||
completion-category-overrides '((file (styles basic partial-completion)))))
|
||||
|
||||
;; emacs-dashboard - An extensible Emacs dashboard
|
||||
(use-package dashboard
|
||||
:init
|
||||
(dashboard-setup-startup-hook)
|
||||
:custom
|
||||
(dashboard-banner-logo-title "Welcome to Dianciemacs!")
|
||||
(dashboard-center-content t)
|
||||
(dashboard-startup-banner (concat user-emacs-directory (convert-standard-filename "neon-crown.png"))))
|
||||
|
||||
;; magit - A beautiful git porcelain for Emacs
|
||||
(use-package magit)
|
||||
|
||||
|
|
BIN
neon-crown.png
Normal file
BIN
neon-crown.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.7 KiB |
|
@ -7,4 +7,7 @@
|
|||
;;
|
||||
;;; Code:
|
||||
|
||||
(add-to-list 'custom-theme-load-path "~/Projects/graphite-emacs")
|
||||
(load-theme 'graphite t)
|
||||
|
||||
;;; init.el ends here
|
||||
|
|
Reference in a new issue