You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
264 B

2 years ago
call vip#config#load()
" map 映射定义
" command 命令定义,调用其他 vip# 函数
augroup VIP_FILETYPE
autocmd!
autocmd BufNewFile,BufRead *.vip,*.vip.txt setlocal filetype=vip
augroup END
function! vip#plugin#load()
return 1
endfunction