dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit 882c443aa0e88b70d263642ea1e34db500e365e8 (patch)
parent 68c1bb7b8bac403e87380734d35ae72fd8f7a517
Author: Alex Karle <alex@alexkarle.com>
Date:   Fri,  2 Jul 2021 23:38:48 -0400

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.

Diffstat:
M.vim/vimrc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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$'