feat: dashboard

This commit is contained in:
Muhammad Nauman Raza 2022-11-19 16:28:24 +00:00
parent 0e401daae1
commit 5635210c9d
No known key found for this signature in database
GPG key ID: A9A36C429C9CAE31
5 changed files with 14 additions and 1 deletions

1
.gitignore vendored
View file

@ -6,6 +6,7 @@ transient/
user/
bookmarks
recentf
.last-package-update-day
.lsp*
org-roam.db*

View file

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

View file

@ -7,4 +7,7 @@
;;
;;; Code:
(add-to-list 'custom-theme-load-path "~/Projects/graphite-emacs")
(load-theme 'graphite t)
;;; init.el ends here