mirror of
https://github.com/Raimondi/delimitMate.git
synced 2025-12-06 04:34:29 +08:00
12 lines
423 B
VimL
12 lines
423 B
VimL
set bs=2
|
|
set hidden
|
|
set noshowmode
|
|
set whichwrap=[]
|
|
set noswapfile
|
|
let &hl = join(map(split(&hl, ','), 'substitute(v:val, '':.\+'', ''n'', ''g'')'), ',')
|
|
let &rtp = expand('<sfile>:p:h:h') . ',' . &rtp . ',' . expand('<sfile>:p:h:h') . '/after'
|
|
let g:delimitMate_pairs = ['()','{}','[]','<>','¿?','¡!',',:']
|
|
let g:delimitMate_quotes = ['"', "'", '`', '«', '|']
|
|
ru plugin/delimitMate.vim
|
|
au VimEnter * echom 'Start test'
|