3

Is something like this possible with VIM (using Solarized Dark)?

If yes, with which package/config commands?

vim

schickling
  • 4,000
  • 4
  • 29
  • 33
  • What is "something like this"? Being able to see the spaces as visible dots? If so, go read [this answer](http://stackoverflow.com/questions/4998582/show-whitespace-characters-in-gvim). – Andy Lester Nov 26 '13 at 22:00

1 Answers1

4

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=·
schickling
  • 4,000
  • 4
  • 29
  • 33