feat: dashboard
This commit is contained in:
parent
0e401daae1
commit
5635210c9d
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,6 +6,7 @@ transient/
|
||||||
user/
|
user/
|
||||||
|
|
||||||
bookmarks
|
bookmarks
|
||||||
|
recentf
|
||||||
.last-package-update-day
|
.last-package-update-day
|
||||||
.lsp*
|
.lsp*
|
||||||
org-roam.db*
|
org-roam.db*
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
(use-package autothemer)
|
(use-package autothemer)
|
||||||
(use-package graphite-theme
|
(use-package graphite-theme
|
||||||
:straight (:package "graphite" :host github
|
:straight (:package "graphite" :host github
|
||||||
:repo "devraza/graphite-emacs"))
|
:repo "devraza/graphite-emacs"))
|
||||||
(load-theme 'graphite t)
|
(load-theme 'graphite t)
|
||||||
|
|
||||||
;; rainbow-mode - Colourful colour codes!
|
;; rainbow-mode - Colourful colour codes!
|
||||||
|
|
|
@ -38,6 +38,15 @@
|
||||||
completion-category-defaults nil
|
completion-category-defaults nil
|
||||||
completion-category-overrides '((file (styles basic partial-completion)))))
|
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
|
;; magit - A beautiful git porcelain for Emacs
|
||||||
(use-package magit)
|
(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:
|
;;; Code:
|
||||||
|
|
||||||
|
(add-to-list 'custom-theme-load-path "~/Projects/graphite-emacs")
|
||||||
|
(load-theme 'graphite t)
|
||||||
|
|
||||||
;;; init.el ends here
|
;;; init.el ends here
|
||||||
|
|
Reference in a new issue