diff --git a/init.el b/init.el index 06c51d5..fdae40a 100644 --- a/init.el +++ b/init.el @@ -52,7 +52,14 @@ ;; Add external e-lisp files to the load-path (add-to-list 'load-path (concat user-emacs-directory - (convert-standard-filename "lisp/"))) + (convert-standard-filename "lisp/"))) + +;; Set theme to `hazakura', Dianicemacs' default +(use-package autothemer) +(use-package hazakura-theme + :straight (:package "hazakura" :host github + :repo "devraza/hazakura-emacs")) +(load-theme 'hazakura t) ;; Load the code of some external files (load "interface") diff --git a/lisp/interface.el b/lisp/interface.el index 621c1ae..baf1d3e 100644 --- a/lisp/interface.el +++ b/lisp/interface.el @@ -34,12 +34,13 @@ (modify-all-frames-parameters '((right-divider-width . 15) (internal-border-width . 15))) -(dolist (face '(window-divider - window-divider-first-pixel - window-divider-last-pixel)) - (face-spec-reset-face face) - (set-face-foreground face (face-attribute 'default :background))) -(set-face-background 'fringe (face-attribute 'default :background)) + +;; Set theme to `hazakura', Dianicemacs' default +(use-package autothemer) +(use-package hazakura-theme + :straight (:package "hazakura" :host github + :repo "devraza/hazakura-emacs")) +(load-theme 'hazakura t) ;; vertico - An amazing search engine! (use-package vertico