-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvundle.vim
38 lines (36 loc) · 1.06 KB
/
vundle.vim
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
36
37
38
" Specify a directory for plugins
call plug#begin('~/.vim/bundle')
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
Plug 'scrooloose/nerdtree'
Plug 'jlanzarotta/bufexplorer'
Plug 'tpope/vim-rails'
Plug 'tpope/vim-ragtag'
Plug 'cfcosta/html5-vim-minimal'
Plug 'tpope/vim-vividchalk'
Plug 'Raimondi/delimitMate'
Plug 'kana/vim-textobj-user'
Plug 'nelstrom/vim-textobj-rubyblock'
Plug 'mileszs/ack.vim'
Plug 'ecomba/vim-ruby-refactoring'
Plug 'godlygeek/tabular'
Plug 'vim-ruby/vim-ruby'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-repeat'
Plug 'kchmck/vim-coffee-script'
Plug 'rafaelfranca/rtf_pygmentize'
Plug 'altercation/vim-colors-solarized'
Plug 'tpope/vim-unimpaired'
Plug 'mattn/emmet-vim'
Plug 'bling/vim-airline'
Plug '/usr/local/opt/fzf' | Plug 'junegunn/fzf.vim'
Plug 'szw/vim-tags'
Plug 'tpope/vim-dispatch'
Plug 'vim-airline/vim-airline-themes'
Plug 'neomake/neomake'
Plug 'SirVer/ultisnips'
Plug 'rafaelfranca/vim-snippets'
Plug 'tpope/vim-rhubarb'
" All of your Plugins must be added before the following line
call plug#end()
filetype plugin indent on " required