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-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")

View file

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