fix: ugly fringes in emacsclient
This commit is contained in:
parent
a1a8e7f817
commit
88e33438bd
9
init.el
9
init.el
|
@ -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")
|
||||||
|
|
|
@ -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
|
||||||
|
|
Reference in a new issue