Remove doom-fringe-size; set default fringe in :ui doom

There was no way to customize doom-fringe-size. Better to customize
fringes by using fringe-mode, {left,right}-fringe-width or
set-window-fringes directly.
This commit is contained in:
Henrik Lissner 2018-05-11 00:01:05 +02:00
parent 2b2f6bcf32
commit 52cdb0bd83
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
3 changed files with 4 additions and 6 deletions

View file

@ -104,3 +104,6 @@
nil nil '(center repeated))
(define-fringe-bitmap 'git-gutter-fr:deleted [128 192 224 240]
nil nil 'bottom))
;; standardize default fringe width
(if (fboundp 'fringe-mode) (fringe-mode '4))