From: Simon Ruderich Date: Wed, 13 May 2009 15:22:08 +0000 (+0200) Subject: vimrc: Also display non breakable space with 'listchars'. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=2ed2c5e01f661ac81ffb78ba465333eb401f9ac9;p=config%2Fdotfiles.git vimrc: Also display non breakable space with 'listchars'. --- diff --git a/vimrc b/vimrc index e640a42..d5555c4 100644 --- a/vimrc +++ b/vimrc @@ -106,9 +106,9 @@ if v:version >= 700 set cursorline endif -" Display tabs as "^I" and trailing space as "-". +" Display tabs, trailing space and non breakable spaces. set list -set listchars=trail:- +set listchars=trail:-,nbsp:! " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)