mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 16:10:05 +08:00
18 lines
365 B
Plaintext
Vendored
18 lines
365 B
Plaintext
Vendored
set nocompatible
|
|
|
|
" load match-up
|
|
let &rtp = '~/.vim/bundle/vim-matchup,' . &rtp
|
|
let &rtp .= ',~/.vim/bundle/vim-matchup/after'
|
|
|
|
" load other plugins, if necessary
|
|
" let &rtp = '~/path/to/other/plugin,' . &rtp
|
|
|
|
set ignorecase " Case insensitive search
|
|
set hlsearch " Highlight search results
|
|
|
|
filetype plugin indent on
|
|
syntax enable
|
|
|
|
" match-up options go here
|
|
|