aboutsummaryrefslogtreecommitdiff
path: root/vim/config/list.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/config/list.vim')
-rw-r--r--vim/config/list.vim9
1 files changed, 9 insertions, 0 deletions
diff --git a/vim/config/list.vim b/vim/config/list.vim
new file mode 100644
index 00000000..87e80005
--- /dev/null
+++ b/vim/config/list.vim
@@ -0,0 +1,9 @@
+" Don't show whitespace characters or end-of-line characters visually by
+" default, but make \l toggle between them
+set nolist
+nnoremap <leader>l :setlocal list!<CR>
+
+" Clearly show when the start or end of the row does not correspond to the
+" start and end of the line
+set listchars+=precedes:<,extends:>
+