VIM: spaces/tab indentation

indentation, space, tabs, vim, whitespace

Solution

I guess I found a solution. But it feel kinda hacky. Perhaps someone got a better solution?

I added this to my .vimrc

 hi Conceal ctermfg=239
 setl conceallevel=2 concealcursor=n
 autocmd InsertEnter,InsertLeave,BufReadPost * :syn match WhiteSpace / / containedin=ALL conceal cchar=·

Problem

Is something like this possible with VIM (using Solarized Dark)? If yes, with which package/config commands?

Original source

Related problems