-
Notifications
You must be signed in to change notification settings - Fork 2
/
bundles.vim
72 lines (57 loc) · 1.59 KB
/
bundles.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
set nocompatible " be iMproved
filetype off " must be off before Vundle has run
if !isdirectory(expand("~/.vim/bundle/Vundle.vim/.git"))
!git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
endif
set runtimepath+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
" Color schemes
Plugin 'flazz/vim-colorschemes'
Plugin 'altercation/vim-colors-solarized'
Plugin 'ColorSchemeMenuMaker'
Plugin 'rainux/vim-desert-warm-256'
" Files
Plugin 'mileszs/ack.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'kien/ctrlp.vim'
" Utility
Plugin 'tpope/vim-surround'
Plugin 'Townk/vim-autoclose'
Plugin 'tomtom/tcomment_vim'
Plugin 'vim-scripts/ZoomWin'
Plugin 'ervandew/supertab'
" Plugin "Valloric/YouCompleteMe"
Plugin 'gmarik/snipmate.vim'
Plugin 'airblade/vim-rooter'
Plugin 'vim-scripts/YankRing.vim'
Plugin 'nathanaelkane/vim-indent-guides'
if executable('ag')
Plugin 'epmatsw/ag.vim.git'
elseif executable('ack')
Plugin 'mileszs/ack.vim'
endif
Plugin 'kshenoy/vim-signature'
" Rails
Plugin 'tpope/vim-rails'
Plugin 'tpope/vim-haml'
Plugin 'cakebaker/scss-syntax.vim'
" Plugin 'kchmck/vim-coffee-script'
Plugin 'tpope/vim-cucumber'
" Ruby
if exists("$rvm_path")
Plugin 'tpope/vim-rvm'
end
Plugin 'tpope/vim-endwise'
Plugin 'kana/vim-textobj-user'
Plugin 'nelstrom/vim-textobj-rubyblock'
Plugin 'lucapette/vim-ruby-doc'
" Git
Plugin 'tpope/vim-fugitive'
Plugin 'airblade/vim-gitgutter.git'
" Tmux
Plugin 'benmills/vimux'
Plugin 'jgdavey/vim-turbux'
call vundle#end()
filetype plugin indent on " and turn it back on!
runtime macros/matchit.vim