bignimbus / pop-punk.vim

🎸 Dark, high-contrast color scheme for vim
MIT License
77 stars 5 forks source link

Issue with comments and html tags #5

Closed yudhiesh closed 3 years ago

yudhiesh commented 3 years ago

How do I fix the comments and HTML tags? They do not match the screenshots.

I am using iTerm.

Screenshot 2020-11-04 at 2 36 15 PM

yudhiesh commented 3 years ago

I have tried playing around setting the following:

if !exists('g:pop_punk_bold')
  let g:pop_punk_bold = 1
endif

if !exists('g:pop_punk_italic')
  let g:pop_punk_italic = 1
endif

if !exists('g:pop_punk_underline')
  let g:pop_punk_underline = 1
endif

if !exists('g:pop_punk_undercurl') && g:pop_punk_underline != 0
  let g:pop_punk_undercurl = 1
endif

if !exists('g:pop_punk_inverse')
  let g:pop_punk_inverse = 1
endif

if !exists('g:pop_punk_colorterm')
  let g:pop_punk_colorterm = 1
endif

It works but then returns back to this same issue even after saving and source % it.

yudhiesh commented 3 years ago

It was due to italics not being available on my terminal.

Was fixed with let g:pop_punk_italic = 0.