vim-epidemic 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +50 -0
- data/VERSION +1 -1
- data/lib/vim-epidemic.rb +1 -1
- data/lib/vim-epidemic/config.rb +1 -1
- data/lib/vim-epidemic/controller.rb +1 -1
- data/vim-epidemic.gemspec +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -2,6 +2,56 @@
|
|
2
2
|
|
3
3
|
Downloads vim plugins and installs them into the pathogen.vim bundle directory.
|
4
4
|
|
5
|
+
# list installed plugins
|
6
|
+
vim-epidemic
|
7
|
+
|
8
|
+
# register plugins from git repositories (on GitHub by default)
|
9
|
+
vim-epidemic add tpope/vim-fugitive
|
10
|
+
vim-epidemic add git://github.com/tpope/vim-rails.git
|
11
|
+
|
12
|
+
# install/update registered plugins
|
13
|
+
vim-epidemic update
|
14
|
+
|
15
|
+
**v0.0.3: at the moment, epidemic.vim only supports plugins in the form of git repositories.**
|
16
|
+
|
17
|
+
## Requirements
|
18
|
+
|
19
|
+
The `git` command must be available in the PATH.
|
20
|
+
|
21
|
+
## Installation
|
22
|
+
|
23
|
+
gem install vim-epidemic
|
24
|
+
|
25
|
+
## Usage
|
26
|
+
|
27
|
+
Add plugin repositories with `vim-epidemic add <REPO>` (see <a href="#configuration">Configuration</a>).
|
28
|
+
|
29
|
+
Install/update all registered plugins with `vim-epidemic update`. New plugin repositories will be cloned into `.vim/bundle`; existing ones will be updated with `git pull`.
|
30
|
+
|
31
|
+
The repositories must be publicly accessible.
|
32
|
+
|
33
|
+
<a name="configuration"></a>
|
34
|
+
## Configuration
|
35
|
+
|
36
|
+
epidemic.vim looks for `~/.epidemic.vim.rb` by default. This file is automatically created when you use the `add` command.
|
37
|
+
|
38
|
+
### Register Plugins
|
39
|
+
|
40
|
+
A plugin from a git repository can be added from the command line like this:
|
41
|
+
|
42
|
+
vim-epidemic add git://github.com/tpope/vim-rails.git
|
43
|
+
|
44
|
+
For GitHub repositories, the `username/repo` part is sufficient:
|
45
|
+
|
46
|
+
vim-epidemic add tpope/vim-fugitive
|
47
|
+
|
48
|
+
Or you can manually edit the configuration file:
|
49
|
+
|
50
|
+
```ruby
|
51
|
+
install "tpope/vim-fugitive"
|
52
|
+
install "git://github.com/tpope/vim-rails.git"
|
53
|
+
```
|
54
|
+
|
5
55
|
## License (MIT)
|
6
56
|
|
7
57
|
Copyright (c) 2011 Alpha Hydrae
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.4
|
data/lib/vim-epidemic.rb
CHANGED
data/lib/vim-epidemic/config.rb
CHANGED
data/vim-epidemic.gemspec
CHANGED