remove tilde from EndOfBuffer in transparent mode (#885)

the tildes are not transparent and are shown for example in nvimtree.
you cant make them transparent, but we can remove them.
no trailing whitespaces are generated.
This commit is contained in:
user0210 2021-07-12 06:31:27 +02:00 committed by GitHub
parent 9e03b59474
commit c3b784024a
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,6 +17,7 @@ end
if O.transparent_window then if O.transparent_window then
cmd "au ColorScheme * hi Normal ctermbg=none guibg=none" cmd "au ColorScheme * hi Normal ctermbg=none guibg=none"
cmd "au ColorScheme * hi SignColumn ctermbg=none guibg=none" cmd "au ColorScheme * hi SignColumn ctermbg=none guibg=none"
cmd "let &fcs='eob: '"
end end
--- SETTINGS --- --- SETTINGS ---