fix: ugly fringes in emacsclient

This commit is contained in:
Muhammad Nauman Raza 2023-07-01 16:42:05 +01:00
parent a1a8e7f817
commit 88e33438bd
No known key found for this signature in database
GPG key ID: 4FFEEB78B8A620C7
2 changed files with 15 additions and 7 deletions

View file

@ -52,7 +52,14 @@
;; Add external e-lisp files to the load-path ;; Add external e-lisp files to the load-path
(add-to-list 'load-path (concat user-emacs-directory (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 the code of some external files
(load "interface") (load "interface")

View file

@ -34,12 +34,13 @@
(modify-all-frames-parameters (modify-all-frames-parameters
'((right-divider-width . 15) '((right-divider-width . 15)
(internal-border-width . 15))) (internal-border-width . 15)))
(dolist (face '(window-divider
window-divider-first-pixel ;; Set theme to `hazakura', Dianicemacs' default
window-divider-last-pixel)) (use-package autothemer)
(face-spec-reset-face face) (use-package hazakura-theme
(set-face-foreground face (face-attribute 'default :background))) :straight (:package "hazakura" :host github
(set-face-background 'fringe (face-attribute 'default :background)) :repo "devraza/hazakura-emacs"))
(load-theme 'hazakura t)
;; vertico - An amazing search engine! ;; vertico - An amazing search engine!
(use-package vertico (use-package vertico