]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Indicate long lines with 'listchars'.
authorSimon Ruderich <simon@ruderich.org>
Wed, 13 May 2009 15:30:34 +0000 (17:30 +0200)
committerSimon Ruderich <simon@ruderich.org>
Wed, 13 May 2009 15:30:34 +0000 (17:30 +0200)
vimrc

diff --git a/vimrc b/vimrc
index d5555c48b1f39a0b1ddcfc2ae387cf1cfac9a476..a6ea6aef32087b76efd8867cc47e82774614ccaa 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -106,9 +106,10 @@ if v:version >= 700
     set cursorline
 endif
 
-" Display tabs, trailing space and non breakable spaces.
+" Display tabs, trailing space, non breakable spaces and long lines (when
+" wrapping is enabled).
 set list
-set listchars=trail:-,nbsp:!
+set listchars=trail:-,nbsp:!,extends:>
 
 
 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)