-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvimrc.bundles
40 lines (36 loc) · 1.1 KB
/
vimrc.bundles
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
" Enable filetype for vim exit code for git commits
filetype on
" Disable for vundle load
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Bundles are GitHub repositories
Bundle 'wincent/Command-T'
Bundle 'Lokaltog/vim-powerline'
Bundle 'mileszs/ack.vim'
Bundle 'tpope/vim-fugitive'
Bundle 'scrooloose/syntastic'
Bundle 'scrooloose/nerdcommenter'
Bundle 'puppetlabs/puppet-syntax-vim'
Bundle 'jeffkreeftmeijer/vim-numbertoggle'
Bundle 'bronson/vim-trailing-whitespace'
Bundle 'vim-ruby/vim-ruby'
Bundle 'tpope/vim-endwise'
Bundle 'tpope/vim-rails'
Bundle 'tpope/vim-surround'
Bundle 'tpope/vim-ragtag'
Bundle 'tpope/vim-unimpaired'
Bundle 'tpope/vim-dispatch'
Bundle 'vim-scripts/ctags.vim'
Bundle 'christoomey/vim-tmux-navigator'
Bundle 'majutsushi/tagbar'
Bundle 'thoughtbot/vim-rspec'
Bundle 'saltstack/salt-vim'
Bundle 'mhinz/vim-signify'
Bundle 'scrooloose/nerdtree'
Bundle 'jistr/vim-nerdtree-tabs'
Bundle 'markcornick/vim-terraform'
if filereadable(expand("~/.vimrc.bundles.local"))
source ~/.vimrc.bundles.local
endif
filetype plugin indent on " (Re)enable filetype and indenting