blob: 04124ab00cd816cd09cb420e6c8e20497504bd95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
" Vundle setup
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
" My list of plugins.
Bundle 'tpope/vim-surround.git'
Bundle 'kien/ctrlp.vim.git'
""
" Some small adjustments for the installed plugins.
" vim-surround.vim: <leader>s is used to surround a word.
map <leader>s ysiw
" Let CtrlP's window to be taller than its default configuration.
let g:ctrlp_match_window = 'max:40'
|