瀏覽代碼

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  ---