diff --git a/.gitignore b/.gitignore index 75650b2..b4ed6a7 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ transient/ user/ bookmarks +recentf .last-package-update-day .lsp* org-roam.db* diff --git a/lisp/editor.el b/lisp/editor.el index 2134bb0..f28ccc0 100644 --- a/lisp/editor.el +++ b/lisp/editor.el @@ -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! diff --git a/lisp/interface.el b/lisp/interface.el index 40fe71b..8362072 100644 --- a/lisp/interface.el +++ b/lisp/interface.el @@ -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) diff --git a/neon-crown.png b/neon-crown.png new file mode 100644 index 0000000..2ce57af Binary files /dev/null and b/neon-crown.png differ diff --git a/user/init.el b/user/init.el index a7cc8f0..e196551 100644 --- a/user/init.el +++ b/user/init.el @@ -7,4 +7,7 @@ ;; ;;; Code: +(add-to-list 'custom-theme-load-path "~/Projects/graphite-emacs") +(load-theme 'graphite t) + ;;; init.el ends here