vim-polyglot/ftplugin/vue.vim
Adam Stankiewicz 0801eac01a
Update
2017-03-23 11:28:28 +01:00

17 lines
297 B
VimL

if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vue') == -1
" Vim filetype plugin
" Language: Vue.js
" Maintainer: Eduardo San Martin Morote
" Author: Adriaan Zonnenberg
if exists("b:did_ftplugin")
finish
endif
runtime! ftplugin/html.vim
setlocal suffixesadd+=.vue
endif