-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.vim
More file actions
72 lines (45 loc) · 1.25 KB
/
plugins.vim
File metadata and controls
72 lines (45 loc) · 1.25 KB
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
" 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'
" Match parent (instead of default)
Plugin 'vim-scripts/matchparenpp'
" NERDTree
Plugin 'scrooloose/nerdtree'
" Git support for NERDTree
Plugin 'Xuyuanp/nerdtree-git-plugin'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'mattn/emmet-vim'
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets'
Plugin 'terryma/vim-multiple-cursors'
"Buffer bye (:Bdelete)
Plugin 'moll/vim-bbye'
Plugin 'jpalardy/vim-slime'
Plugin 'christoomey/vim-tmux-navigator'
Plugin 'tpope/vim-surround'
Plugin 'Raimondi/delimitMate'