Add vue support, closes #160

This commit is contained in:
Adam Stankiewicz
2017-02-02 21:49:51 +01:00
parent 39036a553f
commit cc868aee51
7 changed files with 185 additions and 0 deletions

14
ftplugin/vue.vim Normal file
View File

@@ -0,0 +1,14 @@
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
endif