1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 19:40:06 +08:00
SpaceVim/bundle/vim-matchup/test/issues/30/minvimrc
2020-06-13 14:06:35 +08:00

17 lines
330 B
Plaintext

set nocompatible
" load match-up
let s:path = simplify(expand('<sfile>:h').'/../../..')
let &rtp = s:path.',' . &rtp
let &rtp .= ','.s:path.'/after'
filetype plugin indent on
syntax enable
" match-up options go here
let g:matchup_matchpref = {
\ 'html': { 'tagnameonly': 1, },
\ 'vue': { 'tagnameonly': 1, },
\}