From 71407b981dd364450a95c7a50e1942566e456fca Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 30 Jun 2012 15:02:55 +0200 Subject: [PATCH] vimrc: Don't draw vertical split separator. --- vimrc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vimrc b/vimrc index 6c3e292..f0e4e26 100644 --- a/vimrc +++ b/vimrc @@ -235,6 +235,14 @@ if v:version >= 700 set listchars+=nbsp:! endif +" Don't draw the vertical split separator by using space as character. Thanks +" to scp1 in #vim on Freenode (2012-06-16 16:12 CEST) for the idea to use a +" non-breakable space. But a simple space works as well, as long as the +" current color scheme is not reset. +if has('windows') && has('folding') + set fillchars+=vert:\ " comment to prevent trailing whitespace +endif + if has('statusline') " Always display the status line even if there is only one window. set laststatus=2 -- 2.44.1