Always highlight tabs

Make tab space very clear to avoid annoying confusion.
This commit is contained in:
Andrew Mulbrook 2021-02-15 10:10:01 -06:00
parent 24051d7737
commit 6fa76a4ba6
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,4 @@
hi TabChar ctermbg=52 guibg=#5f0000
syn match TabChar "\t"

5
vim/after/filetype.vim Normal file
View file

@ -0,0 +1,5 @@
if !exists("after_autocmds_loaded")
let after_autocmds_loaded = 1
au BufNewFile,BufRead * source ~/.vim/after/common_syntax.vim
endif