Я пытаюсь выделить синтаксис CSS в файлах .html и .vue, но он не работает, как показано на скриншоте: https://i.ibb.co/XDFKwTx/Screenshot-from-2019-04-22-18-13-46.png
Я пытался использовать плагин https://github.com/posva/vim-vue, но результат тот же, что и у исходного HTML-плагина.
Мой ~ / .vimrc:
syntax on
set number
filetype on
filetype plugin on
filetype indent on
set autoread
set encoding=utf-8
set fileencoding=utf-8
set fileformat=unix
set fileformats=unix,dos
autocmd BufNewFile,BufRead *.vue,*.ts: set filetype=html
call plug#begin('~/.vim/plugged')
Plug 'sgur/vim-editorconfig'
call plug#end()