From c3b784024ae872f5d96885a481d96bfd74346707 Mon Sep 17 00:00:00 2001 From: user0210 <40967562+user0210@users.noreply.github.com> Date: Mon, 12 Jul 2021 06:31:27 +0200 Subject: [PATCH] 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. --- lua/settings.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/settings.lua b/lua/settings.lua index d797558a..e4ee9e24 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -17,6 +17,7 @@ end if O.transparent_window then cmd "au ColorScheme * hi Normal ctermbg=none guibg=none" cmd "au ColorScheme * hi SignColumn ctermbg=none guibg=none" + cmd "let &fcs='eob: '" end --- SETTINGS ---