mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 12:30:05 +08:00
21 lines
443 B
Plaintext
21 lines
443 B
Plaintext
set nocompatible
|
|
|
|
" load match-up
|
|
let s:path = simplify(expand('<sfile>:h').'/../../..')
|
|
let &rtp = s:path.',' . &rtp
|
|
let &rtp .= ','.s:path.'/after'
|
|
|
|
" rtp for testing files
|
|
let &rtp = s:path.'/test/rtp,' . &rtp
|
|
|
|
" load other plugins, if necessary
|
|
" let &rtp = '~/path/to/other/plugin,' . &rtp
|
|
|
|
filetype plugin indent on
|
|
syntax enable
|
|
|
|
" match-up options go here
|
|
hi MatchParen ctermfg=blue ctermbg=NONE
|
|
let g:matchup_transmute_enabled = 1
|
|
|