mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 17:00:05 +08:00
17 lines
330 B
Plaintext
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, },
|
||
|
\}
|
||
|
|