Don't override the filetype for vue files

This commit is contained in:
Kevin MacMartin 2018-03-15 13:40:07 -04:00
parent 34835caf48
commit 323b55efc8
2 changed files with 1 additions and 3 deletions

View file

@ -44,7 +44,6 @@ autocmd FileChangedRO * nested set noreadonly
autocmd BufNewFile,BufRead *pacman.conf setlocal ft=conf autocmd BufNewFile,BufRead *pacman.conf setlocal ft=conf
autocmd BufNewFile,BufRead *vimpagerrc setlocal ft=vim autocmd BufNewFile,BufRead *vimpagerrc setlocal ft=vim
autocmd BufNewFile,BufRead *yaourtrc setlocal ft=sh autocmd BufNewFile,BufRead *yaourtrc setlocal ft=sh
autocmd BufNewFile,BufRead *.vue setlocal ft=vue.javascript
"filtype specific settings "filtype specific settings
autocmd BufEnter,FileType sh setlocal iskeyword-=. autocmd BufEnter,FileType sh setlocal iskeyword-=.

View file

@ -5,6 +5,5 @@ let g:mta_filetypes = {
\ 'php':1, \ 'php':1,
\ 'xml':1, \ 'xml':1,
\ 'jinja':1, \ 'jinja':1,
\ 'vue':1, \ 'vue':1
\ 'vue.javascript':1
\ } \ }