From 882c443aa0e88b70d263642ea1e34db500e365e8 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Fri, 2 Jul 2021 23:38:48 -0400 Subject: [PATCH] vim: Add space to listchars for visible indentation This has been important recently as I've been writing more python. Ideally, this would be a unicode "centered dot", but I want to keep the config ascii for portability. --- .vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vim/vimrc b/.vim/vimrc index 35c5a91..9591780 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -18,7 +18,7 @@ set wildmenu " Visual completion for command mode set showcmd " Show the command being typed set laststatus=2 " Always show the statusbar set noequalalways " Don't resize split on open/close event -set listchars=tab:>-,trail:~,eol:$ " Nicer whitespace +set listchars=tab:>-,trail:~,space:.,eol:$ " Nicer whitespace set hidden " Allow unsaved buffers if v:progname =~# 'vim$' -- libgit2 0.28.4