forked from aliev/vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.vim
64 lines (41 loc) · 1.15 KB
/
plugins.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
" Plugins
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Plugin 'gmarik/vundle'
" Utils
Plugin 'bling/vim-airline'
" Toggle and display marks
Plugin 'kshenoy/vim-signature'
" Comment selected lines
Plugin 'tomtom/tcomment_vim'
" Syntax checker
Plugin 'scrooloose/syntastic'
" Show a git diff in a sign column
Plugin 'airblade/vim-gitgutter'
" Git wrapper
Plugin 'tpope/vim-fugitive'
" Jedi for comfortable development with python
Plugin 'davidhalter/jedi-vim'
" Color schemes
Plugin 'flazz/vim-colorschemes'
" Python indent
Plugin 'hynek/vim-python-pep8-indent'
" Html/JavaScript indent
Plugin 'lukaszb/vim-web-indent'
" Display indentation lines
Plugin 'Yggdroot/indentLine'
" My scripts collection for comfortable work
Plugin 'aliev/vim-comfortable'
" Match parent (instead of default)
Plugin 'vim-scripts/matchparenpp'
" NERDTree
Plugin 'scrooloose/nerdtree'
" Git support for NERDTree
Plugin 'Xuyuanp/nerdtree-git-plugin'
Plugin 'mattn/emmet-vim'
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'junegunn/goyo.vim'