Open sc-laurence opened 3 years ago
Same issue as #135. html.vim thinks it's a <b>
tag. You can currently work around it by setting the following in your init.vim:
let g:html_no_rendering = 1
Thanks @adriaanzon but no joy. Do I need to add it before, within or after the plugin section? Sorry kinda new to vim
Hmm, can you add screenshots of how the syntax coloring looks in individual html, js and css files?
This is probably caused by your vim-polyglot
plugin. I had the same issue (and many more) when I used vim-polyglot
.
I use per language syntax plugins now or just the ones that come with Vim. The Vue related syntax plugins that work well for me in combination with posva/vim-vue
are:
" Syntax: html
Plug 'othree/html5.vim'
" Syntax: Javascript
Plug 'yuezk/vim-js'
" Syntax: scss
Plug 'cakebaker/scss-syntax.vim'
" Syntax: Vue
Plug 'posva/vim-vue'
This is my current init.vim for NVIM v0.4.4
but them it looks like this when I open vue files from NERDtree
the type of file has been set to Vue already, is there anything else I am doing wrong?