File: index.markdown

package info (click to toggle)
vim-addon-manager 0.5.11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 308 kB
  • sloc: ruby: 970; makefile: 15; javascript: 10; sh: 7
file content (46 lines) | stat: -rw-r--r-- 1,054 bytes parent folder | download | duplicates (4)
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
# vim-addon-manager

## Installation

If you use [Debian](http://debian.org/) (or any derivative), you can install
from the Debian repository.

```debian
$ apt-get install vim-addon-manager
```

On other systems, you can install vim-addon-manager using [Rubygems](http://rubygems.org/):

```rubygems
$ gem install vim-addon-manager
```

## Usage

Addon installation:

```shell
$ vam install tetris                                  # from vim-scripts package on Debian
$ vam install https://github.com/user/extension.git   # from git repository
```

Checking the status of your addons:

```shell
$ vam status
# Name                     User Status  System Status 
align                      installed    removed
alternate                  removed      removed
bufexplorer                removed      removed
calendar                   removed      removed
closetag                   removed      removed
[...]
```

Removing installed addons:

```shell
$ vam remove tetris
```

For more in-depth information, check the [documentation](documentation.html).