-
Notifications
You must be signed in to change notification settings - Fork 1
/
.vimrc-plugins-manager
42 lines (41 loc) · 1.2 KB
/
.vimrc-plugins-manager
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
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
"
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" auto completion
Plugin 'Valloric/YouCompleteMe'
" snippet engine
Plugin 'SirVer/ultisnips'
Plugin 'garbas/vim-snipmate'
" vim-snipmate is dependent on vim-addon-mw-utils & tlib_vim
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
" snippet
Plugin 'honza/vim-snippets'
" markdown writing env
Plugin 'plasticboy/vim-markdown'
" centralize markdown text
Plugin 'junegunn/goyo.vim'
" markdown focus mode
Plugin 'junegunn/limelight.vim'
" vim status line
Plugin 'vim-airline/vim-airline'
"Plugin 'vim-airline/vim-airline-themes'
" text filtering and alignment
Plugin 'godlygeek/tabular'
" show git diff on left side of vim window
Plugin 'airblade/vim-gitgutter'
Plugin 'tpope/vim-fugitive'
" syntax check
Plugin 'vim-syntastic/syntastic'
" file system explorer
Plugin 'scrooloose/nerdtree'
" show git status in NERDTree (can change symbols)
Plugin 'Xuyuanp/nerdtree-git-plugin'
" show real color of rgb text
Plugin 'ap/vim-css-color'
call vundle#end() " required
filetype plugin indent on " required
filetype plugin on