mirror of
https://github.com/leafOfTree/vim-vue-plugin.git
synced 2025-12-08 21:54:46 +08:00
9 lines
213 B
VimL
9 lines
213 B
VimL
au BufNewFile,BufRead *.vue,*.wpy setf javascript.vue
|
|
|
|
if !exists("g:vim_vue_plugin_has_init_indent")
|
|
let ext = expand("%:e")
|
|
if ext == 'wpy'
|
|
let g:vim_vue_plugin_has_init_indent = 1
|
|
endif
|
|
endif
|