forked from crahles/vimfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundles.vim
executable file
·56 lines (47 loc) · 2.12 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
set nocompatible " be iMproved
if !isdirectory(expand("~/.vim/bundle/vundle/.git"))
!git clone git://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
endif
filetype off " must be off before Vundle has run
set runtimepath+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
" Tools
Bundle 'git://github.com/kien/ctrlp.vim.git'
Bundle 'git://github.com/altercation/vim-colors-solarized.git'
Bundle 'https://github.com/vim-airline/vim-airline-themes.git'
Bundle 'git://github.com/rking/ag.vim.git'
Bundle 'git://github.com/sjl/gundo.vim.git'
Bundle 'git://github.com/vim-scripts/DeleteTrailingWhitespace.git'
Bundle 'git://github.com/tpope/vim-surround.git'
Bundle 'git://github.com/tpope/vim-rvm.git'
Bundle 'git://github.com/tpope/vim-fugitive'
Bundle 'git://github.com/ervandew/supertab.git'
Bundle 'git://github.com/nathanaelkane/vim-indent-guides.git'
Bundle 'git://github.com/tomtom/tcomment_vim.git'
Bundle 'git://github.com/Townk/vim-autoclose.git'
Bundle 'git://github.com/godlygeek/tabular.git'
Bundle 'git://github.com/scrooloose/syntastic.git'
Bundle '[email protected]:vim-scripts/VimIRC.vim.git'
Bundle 'https://github.com/lervag/vimtex.git'
Bundle '[email protected]:Shougo/vimproc.vim.git'
" Language Support
Bundle 'git://github.com/tpope/vim-rails.git'
Bundle 'git://github.com/tpope/vim-haml.git'
Bundle 'git://github.com/tpope/vim-markdown.git'
Bundle 'git://github.com/tpope/vim-bundler.git'
Bundle 'git://github.com/vim-ruby/vim-ruby.git'
Bundle 'git://github.com/t9md/vim-chef.git'
Bundle 'git://github.com/kchmck/vim-coffee-script.git'
Bundle 'git://github.com/pangloss/vim-javascript.git'
Bundle 'git://github.com/cakebaker/scss-syntax.vim.git'
Bundle 'git://github.com/thoughtbot/vim-rspec.git'
Bundle 'git://github.com/lukerandall/haskellmode-vim.git'
Bundle '[email protected]:eagletmt/neco-ghc.git'
Bundle '[email protected]:eagletmt/ghcmod-vim.git'
Bundle '[email protected]:timcharper/textile.vim.git'
Bundle 'https://github.com/hdima/python-syntax.git'
filetype plugin indent on " and turn it back on!
" Load plugins that ship with Vim {{{1
runtime macros/matchit.vim
runtime ftplugin/man.vim