-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbundles.vim
180 lines (136 loc) · 6.62 KB
/
bundles.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
Plugin 'AndrewRadev/splitjoin.vim'
" Conversion of multiline of codes into one-liners and visceversa (3)
" More info: https://github.com/AndrewRadev/splitjoin.vim
Plugin 'duff/vim-bufonly'
" Delete all the buffers except the current buffer. (2)
" More info: https://github.com/schickling/vim-bufonly
Plugin 'ervandew/supertab'
" Allows you to use <Tab> for all your insert completion needs (5)
" More info: https://github.com/ervandew/supertab
Plugin 'godlygeek/tabular'
" Allows you to filter and align text (4.5)
" More info: http://vimcasts.org/episodes/aligning-text-with-tabular-vim/
Plugin 'mileszs/ack.vim'
" search tool from Vim (4)
" More info: https://github.com/mileszs/ack.vim
Plugin 'tpope/vim-abolish'
" Allows you to abbreviate and replace multiple variants of a word (3)
" More info: https://github.com/tpope/vim-abolish
Plugin 'tpope/vim-commentary'
" Allows you to comment stuff (5)
" More info: https://github.com/tpope/vim-commentary
Plugin 'tpope/vim-endwise'
" Allows you to autocomplete chunks of code, adds 'end' in functions, if, etc. (4)
" More info: https://github.com/tpope/vim-endwise
Plugin 'tpope/vim-eunuch'
" Provides you some shell commands out-of-the-box (2)
" More info: https://github.com/tpope/vim-eunuch
Plugin 'tpope/vim-fugitive'
" A git wrapper for vim, provides you some git commands out-of-the-box.(4.5)
" http://vimcasts.org/episodes/fugitive-vim---a-complement-to-command-line-git/
Plugin 'tpope/vim-git'
" Syntax, indent, and filetype plugin for git, gitcommit, gitconfig, gitrebase, and gitsendemail.
" More info: http://www.vim.org/scripts/script.php?script_id=1654
Plugin 'tpope/vim-pathogen'
" Allows you to install plugins and runtime files in their own private directories, Vim package manager (4.5)
" More info: https://github.com/tpope/vim-pathogen
Plugin 'tpope/vim-ragtag'
" Allows you to map HTML, XML, PHP, ASP, eRuby, JSP among others.
" More info: http://www.catonmat.net/blog/vim-plugins-ragtag-allml-vim/
Plugin 'tpope/vim-repeat'
" Allows you to repeat supported plugin maps with '.'
" More info: https://github.com/tpope/vim-repeat
Plugin 'tpope/vim-rsi'
" Key bindigns in insert and command-line modes.
" https://github.com/tpope/vim-rsi/blob/master/plugin/rsi.vim
Plugin 'tpope/vim-sensible'
" Provides some default settings for vim
" More info: https://github.com/tpope/vim-sensible/blob/master/plugin/sensible.vim
Plugin 'tpope/vim-surround'
" Allows you to surron words with brackets, quotes, html tags, among others.
" More info: https://github.com/tpope/vim-surround
Plugin 'tpope/vim-unimpaired'
" pairs of handy bracket mappings
" More info: https://github.com/tpope/vim-unimpaired
Plugin 'tpope/vim-vinegar'
" an enhancement for netrw (2)
" Mmore info: https://github.com/tpope/vim-vinegar
Plugin 'vim-scripts/bufkill.vim'
" Allows you to perfomr operations over buffers (unload/delete/wipe)
" More info: https://github.com/vim-scripts/bufkill.vim
Plugin 'vim-scripts/bufexplorer.zip'
" Allows you to switch between buffers and perform another commands as well
" More info: https://github.com/vim-scripts/bufexplorer.zip
Plugin 'jgdavey/tslime.vim'
" Allows you to send commands from vim to a running tmux session
" More info: https://github.com/jgdavey/tslime.vim
Plugin 'rondale-sc/vim-spacejam'
" Plugin for auto removing whitespace
" More info: https://github.com/rondale-sc/vim-spacejam
Plugin 'tpope/vim-dispatch'
" Allows you to kick off builds and test suites using one of several asynchronous adapters (including tmux, screen, iTerm, Windows, and a headless mode), and when the job completes, errors will be loaded and parsed automatically
" More info: https://vimeo.com/63116209, https://github.com/tpope/vim-dispatch
Plugin 'milkypostman/vim-togglelist'
" allows you to bind a key to toggle the Location List and the Quickfix List
" More info: https://github.com/milkypostman/vim-togglelist, http://usevim.com/2012/08/24/vim101-quickfix/
Plugin 'christoomey/vim-tmux-navigator'
" Provides you easy navigation between tmux panes and vim splits
" Mopre info: https://github.com/christoomey/vim-tmux-navigator
Plugin 'vim-scripts/IndexedSearch'
" Displays 'Nth match out of M' at every search
" https://github.com/vim-scripts/IndexedSearch
Plugin 'kana/vim-textobj-user'
" Allows you to create your own text objects
" More info: https://github.com/kana/vim-textobj-user/wiki, https://github.com/nelstrom/vim-textobj-rubyblock
Plugin 'Rykka/lastbuf.vim'
" Allows you to open last closed buffer
" More info: https://github.com/Rykka/lastbuf.vim
Plugin 'altercation/vim-colors-solarized'
" colorscheme for the vim
" More info: https://github.com/altercation/vim-colors-solarized
Plugin 'ctrlpvim/ctrlp.vim'
" Fuzzy file, buffer, mru, tag, etc finder
" More info: https://github.com/ctrlpvim/ctrlp.vim
Plugin 'scrooloose/nerdtree'
" A tree explorer plugin for vim
" More info: https://github.com/scrooloose/nerdtree
Plugin 'rking/ag.vim'
" This plugin will allow you to run ag from vim, and shows the results in a split window.
" More info: https://github.com/rking/ag.vim
Plugin 'bling/vim-airline'
" Lean & mean status/tabline for vim that's light as air.
" More info: https://github.com/bling/vim-airline
Plugin 'ekalinin/Dockerfile.vim'
" Vim syntax file for Docker's Dockerfile and snippets for snipMate.
" More info: https://github.com/ekalinin/Dockerfile.vim
"
Plugin 'tpope/vim-rails'
" Plugin for working with Ruby on Rails applications
" https://github.com/tpope/vim-rails
Plugin 'isRuslan/vim-es6'
" Write JavaScript ES6 easily with vim
" https://github.com/isRuslan/vim-es6
Plugin 'kylef/apiblueprint.vim'
" Syntax highlighting and linting for API Blueprint
" https://github.com/kylef/apiblueprint.vim
Plugin 'bronson/vim-trailing-whitespace'
" Highlights trailing whitespace in red and provides :FixWhitespace to fix it.
" https://github.com/bronson/vim-trailing-whitespace
Plugin 'pangloss/vim-javascript'
" JavaScript bundle for vim, this bundle provides syntax highlighting and improved indentation.
" https://github.com/pangloss/vim-javascript
Plugin 'mxw/vim-jsx'
" React JSX syntax highlighting and indenting
" https://github.com/mxw/vim-jsx
Plugin 'mattn/emmet-vim'
" emmet-vim is a vim plug-in which provides support for expanding abbreviations similar to emmet.
" https://github.com/mattn/emmet-vim
Plugin 'ntpeters/vim-better-whitespace'
" causes all trailing whitespace characters to be highlighted.
" https://github.com/ntpeters/vim-better-whitespace
Plugin 'w0rp/ale'
" ALE (Asynchronous Lint Engine) is a plugin for providing linting while you edit your text files
" https://github.com/w0rp/ale
Plugin 'ryanoasis/vim-devicons'
" Adds filetype glyphs (icons) to various vim plugins
" https://github.com/ryanoasis/vim-devicons