-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvimrc.bundles
92 lines (79 loc) · 2.4 KB
/
vimrc.bundles
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
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#rc()
" load Vundle
Plugin 'gmarik/Vundle.vim'
""" my plug-ins
" add nyan cat to status bar
Bundle 'edvb/catium.vim'
Bundle 'edvb/dmenu.vim'
""" tpope plugins
" toggle comments
Bundle 'tpope/vim-commentary'
" git plug-in
Bundle 'tpope/vim-fugitive'
" auto add endfunction/endif/etc
Bundle 'tpope/vim-endwise'
" improves . command to repeat last command
Bundle 'tpope/vim-repeat'
" automatically changes indents to fit file type
Bundle 'tpope/vim-sleuth'
" allows you to change/insert/delete tags/quotes/parentheses
Bundle 'tpope/vim-surround'
" change options with co or [o and ]o
Bundle 'tpope/vim-unimpaired'
" readline in insert mode
Bundle 'tpope/vim-rsi'
" unix commands in vim
Bundle 'tpope/vim-eunuch'
""" language specific plug-ins
" syntax checker
Bundle 'Syntastic'
" highlight matching HTML/XML tags
Bundle 'MatchTag'
" collection of language packs
Bundle 'sheerun/vim-polyglot'
" switch between header and c source files
Bundle 'a.vim'
""" window plug-ins
" split widows that adjust
Bundle 'zhaocai/GoldenView.Vim'
" jump to tags in file, such as classes, functions, variables
Bundle 'Tagbar'
" use same keys for moving around tmux and Vim splits
Bundle 'christoomey/vim-tmux-navigator'
" list "FIXME", "TODO", "XXX" in new window
Bundle 'vim-scripts/TaskList.vim'
" list files in working directory in new buffer to be rename or removed
Bundle 'qpkorr/vim-renamer'
" ui for switching to open buffer
Bundle 'mihaifm/bufstop'
""" auto complete plug-ins
" auto complete words already in file and syntax's
Bundle 'Shougo/neocomplete.vim'
" addition to Neocomplete, allows auto complete of text in other tmux panes
Bundle 'wellle/tmux-complete.vim'
""" visual plug-ins
" show where vim marks are
Bundle 'kshenoy/vim-signature'
" rainbow parentheses
Bundle 'luochen1990/rainbow'
" see where lines are added, removed, or changed in a git repo
Bundle 'airblade/vim-gitgutter'
" use tabline to display buffers
Bundle 'ap/vim-buftabline'
" highlight all words under cursor
Bundle 'itchyny/vim-cursorword'
""" others
" easily align text by characters
Bundle 'tommcdo/vim-lion'
" use s and S to move through line
Bundle 'jayflo/vim-skip'
" increase or decrease select region automatically
Bundle 'terryma/vim-expand-region'
" increment values in visual mode
Bundle 'triglav/vim-visual-increment'
Bundle 'mhinz/vim-grepper'
Bundle 'swapit'
filetype plugin indent on