X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=fd788ef20aa21a242c92e9a2a525ef5464d51d42;hb=42d4224b0c3b5b83872832d9ca9eb7ce230d3d24;hp=1c64c8efd2b1fe429786a58d42592eab804e0422;hpb=1c0839eb69ff09c6af460191a85d534a71ec4e7b;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index 1c64c8e..fd788ef 100644 --- a/vimrc +++ b/vimrc @@ -198,10 +198,14 @@ endif " remove the highlighting until the next search. set hlsearch -" Display tabs, trailing space, non breakable spaces and long lines (when -" wrapping is disabled). +" Display some special characters. set list -set listchars=trail:-,extends:> +set listchars= +" Display trailing whitespace as "-". +set listchars+=trail:- +" Display markers for long lines when wrapping is disabled. +set listchars+=extends:> +" Display non-breakable space as "!". if v:version >= 700 set listchars+=nbsp:! endif