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-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")
|
||||
|
|
|
@ -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
|
||||
|
|
Reference in a new issue