forked from humiaozuzu/dot-vimrc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbundles.vim
106 lines (89 loc) · 2.5 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle
Plugin 'VundleVim/Vundle.vim'
"------------------
" Code Completions
"------------------
" Bundle 'Shougo/neocomplcache'
Bundle 'vim-scripts/AutoComplPop'
Bundle 'mattn/emmet-vim'
Bundle 'Raimondi/delimitMate'
Bundle 'ervandew/supertab'
" snippets
" Bundle 'garbas/vim-snipmate'
" Bundle 'honza/vim-snippets'
"------ snipmate dependencies -------
" Bundle 'MarcWeber/vim-addon-mw-utils'
" Bundle 'tomtom/tlib_vim'
"-----------------
" Fast navigation
"-----------------
Bundle 'Lokaltog/vim-easymotion'
"--------------
" Fast editing
"--------------
Bundle 'tpope/vim-surround'
Bundle 'scrooloose/nerdcommenter'
" Bundle 'sjl/gundo.vim'
Bundle 'godlygeek/tabular'
" Bundle 'nathanaelkane/vim-indent-guides'
"--------------
" IDE features
"--------------
Bundle 'scrooloose/nerdtree'
" Bundle 'humiaozuzu/TabBar'
" Bundle 'majutsushi/tagbar'
" Bundle 'mileszs/ack.vim'
Bundle 'kien/ctrlp.vim'
" Bundle 'tpope/vim-fugitive'
" Bundle 'Lokaltog/vim-powerline'
" Bundle 'scrooloose/syntastic'
Bundle 'bronson/vim-trailing-whitespace'
" Bundle 'wesleyche/SrcExpl'
" Bundle 'bling/vim-airline'
"-------------
" Other Utils
"-------------
" Bundle 'humiaozuzu/fcitx-status'
" Bundle 'nvie/vim-togglemouse'
"----------------------------------------
" Syntax/Indent for language enhancement
"----------------------------------------
"------- web backend ---------
" Bundle '2072/PHP-Indenting-for-VIm'
" Bundle 'tpope/vim-rails'
" Bundle 'lepture/vim-jinja'
" Bundle 'digitaltoad/vim-jade'
"------- web frontend ----------
" Bundle 'othree/html5.vim'
" Bundle 'tpope/vim-haml'
" Bundle 'pangloss/vim-javascript'
" Bundle 'kchmck/vim-coffee-script'
" Bundle 'nono/jquery.vim'
" Bundle 'groenewege/vim-less'
" Bundle 'wavded/vim-stylus'
" Bundle 'nono/vim-handlebars'
"------- markup language -------
" Bundle 'tpope/vim-markdown'
" Bundle 'timcharper/textile.vim'
"------- Ruby --------
" Bundle 'tpope/vim-endwise'
"------- Go ----------
" Bundle 'jnwhiteh/vim-golang'
"------- FPs ------
Bundle 'kien/rainbow_parentheses.vim'
" Bundle 'wlangstroth/vim-racket'
" Bundle 'vim-scripts/VimClojure'
" Bundle 'rosstimson/scala-vim-support'
"--------------
" Color Schemes
"--------------
" Bundle 'rickharris/vim-blackboard'
" Bundle 'vim-scripts/desertEx'
" Bundle 'rickharris/vim-monokai'
" Bundle 'Lokaltog/vim-distinguished'
call vundle#end()
filetype plugin indent on " required!