-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundles.vim
More file actions
92 lines (85 loc) · 2.84 KB
/
Copy pathbundles.vim
File metadata and controls
92 lines (85 loc) · 2.84 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
"while Vundle settings start
"*****************************
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/dotvim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" My bundles here:
"
" original repos on GitHub
Bundle 'tpope/vim-fugitive'
Bundle 'nelstrom/vim-visual-star-search.git'
Bundle 'tpope/vim-unimpaired.git'
Bundle 'tpope/vim-repeat.git'
Bundle 'godlygeek/tabular.git'
" Bundle 'sjl/gundo.vim.git'
Bundle 'tpope/vim-surround.git'
Bundle 'scrooloose/nerdtree.git'
Bundle 'vim-scripts/gnuplot.vim.git'
"Bundle 'Rip-Rip/clang_complete'
"Bundle 'tpope/vim-dispatch.git'
"Bundle 'Valloric/YouCompleteMe.git'
" Bundle 'tomtom/tlib_vim.git' " Required by garbas/snipmate
" Bundle 'MarcWeber/vim-addon-mw-utils.git' " Required by garbas/snipmate
" Bundle 'garbas/vim-snipmate.git'
" Bundle 'msanders/snipmate.vim.git'
Bundle 'SirVer/ultisnips'
Bundle 'honza/vim-snippets'
Bundle 'ervandew/supertab.git'
" Bundle 'vim-scripts/taglist.vim.git'
"Bundle 'scrooloose/syntastic.git'
"Bundle 'Lokaltog/vim-easymotion'
"Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
"Bundle 'tpope/vim-rails.git'
" vim-scripts repos
Bundle 'L9'
" Bundle 'FuzzyFinder'
"Bundle 'djoshea/vim-matlab-fold.git'
Bundle 'lazywei/vim-matlab.git'
Bundle 'vim-scripts/Colour-Sampler-Pack.git'
Bundle 'vim-scripts/OmniCppComplete.git'
"Bundle 'vim-scripts/octave.vim--.git'
" non-GitHub repos
"Bundle 'git://git.wincent.com/command-t.git'
" Git repos on your local machine (i.e. when working on your own plugin)
"Bundle 'file:///Users/gmarik/path/to/plugin'
" ...
Bundle 'xuhdev/SingleCompile.git'
Bundle 'vim-scripts/LaTeX-Suite-aka-Vim-LaTeX.git'
Bundle 'jcf/vim-latex.git'
Bundle 'nelstrom/vim-qargs.git'
Bundle 'beloglazov/vim-online-thesaurus.git'
Bundle 'tpope/vim-commentary.git'
Bundle 'kana/vim-textobj-user'
Bundle 'beloglazov/vim-textobj-quotes'
"Bundle 'gibiansky/vim-latex-objects'
" Bundle 'rbonvall/vim-textobj-latex'
Bundle 'vim-scripts/YankRing.vim.git'
Bundle 'vim-scripts/AutoComplPop.git'
"Bundle 'szw/vim-tags.git'
Bundle 'vim-scripts/Vim-R-plugin.git'
" Bundle 'Chiel92/vim-autoformat'
Bundle 'bling/vim-airline.git'
Bundle 'klen/python-mode'
" Bundle 'davidhalter/jedi-vim.git'
" Color schemes
Bundle 'thomd/vim-wasabi-colorscheme.git'
Bundle 'altercation/vim-colors-solarized.git'
Bundle 'vim-scripts/SyntaxRange.git'
Bundle 'vim-scripts/fontsize'
filetype on
filetype indent plugin on " required!
"
" Brief help
" :BundleList - list configured bundles
" :BundleInstall(!) - install (update) bundles
" :BundleSearch(!) foo - search (or refresh cache first) for foo
" :BundleClean(!) - confirm (or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle commands are not allowed.
" Vundle settings ends
"*****************************