From 9e2ee2b8de6463181963a42f39753f3474fe912a Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Thu, 9 Jun 2022 10:23:03 +0000 Subject: [PATCH] Tweak how tabs are displayed --- vimrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/vimrc b/vimrc index 6331b25..ad8ce28 100644 --- a/vimrc +++ b/vimrc @@ -192,13 +192,19 @@ if has('patch-7.3.541') set formatoptions+=j endif +if has('patch-8.1.0759') + set listchars+=tab:  │ +else + set listchars+=tab:│  +endif + if has('patch-8.1.1564') set signcolumn=number else set signcolumn=yes endif -if has("patch-8.2.2454") +if has('patch-8.2.2454') set listchars+=lead:· endif