-
Notifications
You must be signed in to change notification settings - Fork 1
/
plug.vim
40 lines (35 loc) · 1011 Bytes
/
plug.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
set nocompatible " be iMproved, required
filetype off " required
call plug#begin('~/.vim/plugged')
" Navigation
Plug 'ctrlpvim/ctrlp.vim'
Plug 'ap/vim-buftabline'
" Ui
Plug 'bling/vim-airline'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'Xuyuanp/nerdtree-git-plugin', { 'on': 'NERDTreeToggle' }
Plug 'nanotech/jellybeans.vim'
Plug 'airblade/vim-gitgutter'
Plug 'vim-airline/vim-airline-themes'
Plug 'kshenoy/vim-signature'
Plug 'nathanaelkane/vim-indent-guides'
Plug 'ntpeters/vim-airline-colornum'
" Command
Plug 'tomtom/tcomment_vim'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-fugitive'
Plug 'terryma/vim-multiple-cursors'
Plug 'tpope/vim-sensible'
Plug 'garbas/vim-snipmate'
Plug 'sjl/gundo.vim'
Plug 'honza/vim-snippets'
Plug 'w0rp/ale'
Plug 'xolox/vim-session'
" Lib dependencies
Plug 'tomtom/tlib_vim'
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'xolox/vim-misc'
" Language Additions
Plug 'klen/python-mode'
" Plug 'Valloric/YouCompleteMe'
call plug#end()