Browse Source

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.
user0210 4 years ago
parent
commit
c3b784024a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      lua/settings.lua

+ 1 - 0
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  ---