소스 검색

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