-
Notifications
You must be signed in to change notification settings - Fork 0
/
bundles.vim
103 lines (89 loc) · 2.33 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
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
"------------------
" Code Completions
"------------------
" Bundle 'Shougo/neocomplcache'
" Bundle 'garbas/vim-snipmate'
Bundle 'ervandew/supertab'
" Bundle 'honza/snipmate-snippets'
" Bundle 'mattn/zencoding-vim'
" snipmate dependencies
" Bundle 'MarcWeber/vim-addon-mw-utils'
" Bundle 'tomtom/tlib_vim'
"-----------------
" Fast navigation
"-----------------
Bundle 'tsaleh/vim-matchit'
Bundle 'Lokaltog/vim-easymotion'
"--------------
" Fast editing
"--------------
" Bundle 'tpope/vim-surround'
" Bundle 'scrooloose/nerdcommenter'
" Bundle 'sjl/gundo.vim'
" " Bundle 'Raimondi/delimitMate'
" Bundle 'kana/vim-smartinput'
" Bundle 'godlygeek/tabular'
" Bundle 'nathanaelkane/vim-indent-guides'
"--------------
" IDE features
"--------------
Bundle 'scrooloose/nerdtree'
Bundle 'majutsushi/tagbar'
Bundle 'humiaozuzu/TabBar'
Bundle 'mileszs/ack.vim'
Bundle 'kien/ctrlp.vim'
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-powerline'
Bundle 'scrooloose/syntastic'
"-------------
" Other Utils
" ------------
Bundle 'guicolorscheme.vim'
"Bundle 'CSApprox'
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 'beyondwords/vim-jinja2'
"Bundle 'digitaltoad/vim-jade'
" web front end
Bundle 'othree/html5.vim'
Bundle 'tpope/vim-haml'
Bundle 'nono/jquery.vim'
Bundle 'pangloss/vim-javascript'
Bundle 'kchmck/vim-coffee-script'
"Bundle 'groenewege/vim-less'
"Bundle 'wavded/vim-stylus'
" markup language
Bundle 'tpope/vim-markdown'
" Ruby
"Bundle 'tpope/vim-endwise'
" Scheme
" Bundle 'kien/rainbow_parentheses.vim'
"Bundle 'wlangstroth/vim-racket'
"--------------
" Color Scheme
"--------------
Bundle 'rickharris/vim-blackboard'
Bundle 'altercation/vim-colors-solarized'
Bundle 'rickharris/vim-monokai'
Bundle 'tpope/vim-vividchalk'
Bundle 'Lokaltog/vim-distinguished'
Bundle 'chriskempson/vim-tomorrow-theme'
Bundle 'tomasr/molokai'
Bundle 'vilight.vim'
Bundle 'twilight'
Bundle 'twilight256.vim'
Bundle 'peaksea'
filetype plugin indent on " required!