From 53683e53bb7f4b0836cb57e947419bdd7232fe5e Mon Sep 17 00:00:00 2001 From: jdhao Date: Sat, 31 Oct 2020 14:56:34 +0800 Subject: [PATCH] Hide the annoying ~ at the end of current buffer. See also https://github.com/neovim/neovim/issues/2067. --- core/options.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/options.vim b/core/options.vim index 9b8dda1..ebcfed1 100644 --- a/core/options.vim +++ b/core/options.vim @@ -1,8 +1,8 @@ scriptencoding utf-8 "{ Builtin options and settings -" change filechar for folding, vertical split, and message separator -set fillchars=fold:\ ,vert:\│,msgsep:‾ +" change fillchars for folding, vertical split, end of buffer, and message separator +set fillchars=fold:\ ,vert:\│,eob:\ ,msgsep:‾ " Paste mode toggle, it seems that Neovim's bracketed paste mode " does not work very well for nvim-qt, so we use good-old paste mode