-
Notifications
You must be signed in to change notification settings - Fork 0
/
vundle.vim
76 lines (69 loc) · 2.13 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
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
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" Colors
Bundle 'altercation/vim-colors-solarized'
" Languages
Bundle 'kchmck/vim-coffee-script'
Bundle 'chrisbra/csv.vim'
Bundle 'tpope/vim-git'
Bundle 'nono/vim-handlebars'
" Bundle 'wlangstroth/vim-haskell'
Bundle 'pangloss/vim-javascript'
Bundle 'tpope/vim-markdown'
Bundle 'mmalecki/vim-node.js'
Bundle 'vim-ruby/vim-ruby'
Bundle 'OrangeT/vim-csharp'
Bundle 'groenewege/vim-less'
Bundle 'digitaltoad/vim-jade'
" Plugins
" like grep but better. Currently used with Ag
Bundle 'mileszs/ack.vim'
" Bundle 'Townk/vim-autoclose'
" Bundle 'vim-scripts/camelcasemotion'
"Bundle 'vim-scripts/ctags.vim'
" quick search window
Bundle 'kien/ctrlp.vim'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'tpope/vim-fugitive'
" Bundle 'henrik/vim-indexed-search'
" easy syntax appropriate commenting
"Bundle 'ddollar/nerdcommenter'
" provides a file system tree view
Bundle 'scrooloose/nerdtree'
" " Changed markdown preview to preview
" Bundle 'greyblake/vim-preview'
Bundle 'danro/rename.vim'
"Bundle 'tpope/vim-repeat'
Bundle 'ervandew/supertab'
Bundle 'tpope/vim-surround'
"Bundle 'scrooloose/syntastic' " syntax error checking
" displays a list of ctags in a viewport
" Bundle 'vim-scripts/taglist.vim'
Bundle 'majutsushi/tagbar'
Bundle 'vim-scripts/tComment'
" Bundle 'tpope/vim-rake'
Bundle 'mattn/zencoding-vim'
Bundle 'ervandew/supertab'
Bundle 'garbas/vim-snipmate'
Bundle 'tomtom/tlib_vim'
Bundle 'MarcWeber/vim-addon-mw-utils'
" Writing
Bundle 'reedes/vim-thematic'
Bundle 'reedes/vim-pencil'
Bundle 'reedes/vim-colors-pencil'
Bundle 'reedes/vim-litecorrect'
filetype plugin indent 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 command are not allowed..