-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvimrc.bundles
More file actions
35 lines (31 loc) · 835 Bytes
/
vimrc.bundles
File metadata and controls
35 lines (31 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
if &compatible
" Required when called without vimrc
set nocompatible
end
call plug#begin('~/.vim/bundle')
" Fuzzy file search via Ctrl-p
Plug 'ctrlpvim/ctrlp.vim'
" mkdir in vim
Plug 'pbrisbin/vim-mkdir'
" Auto-close blocks
Plug 'tpope/vim-endwise'
" Helpers for UNIX
Plug 'tpope/vim-eunuch'
" Git support
Plug 'tpope/vim-fugitive'
" Surround text with brackets, asterisks, HTML tags etc.
Plug 'tpope/vim-surround'
" Ruby support
Plug 'vim-ruby/vim-ruby'
Plug 'tpope/vim-rails'
" A custom text object for selecting ruby blocks
Plug 'kana/vim-textobj-user'
Plug 'nelstrom/vim-textobj-rubyblock'
" Toggle comments
Plug 'vim-scripts/tComment'
" Navigate vim panes identical to tmux panes
Plug 'christoomey/vim-tmux-navigator'
if filereadable(expand("~/.vimrc.bundles.local"))
source ~/.vimrc.bundles.local
endif
call plug#end()