Преглед на файлове

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 години
родител
ревизия
c3b784024a
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  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  ---