An open API service indexing awesome lists of open source software.

https://github.com/bval/vim-plugins

repository to additional vim plugins as submodules for my dotfiles setup
https://github.com/bval/vim-plugins

Last synced: 7 months ago
JSON representation

repository to additional vim plugins as submodules for my dotfiles setup

Awesome Lists containing this project

README

          

### Setup

This repo is designed to provide additional vim plugins for use via
[Janus](https://github.com/carlhuda/janus). Once Janus is installed and
running, do the following:

```
$ git clone https://github.com/bval/vim-plugins ~/.janus
$ git submodule init && git submodule update
$ cd ~/.janus
$ gem install bundler
$ bundle install
```

This assumes you have a Ruby configuration that does not require sudo to
install global gems. I do. If you want to use this pattern, look into
rvm or rbenv or equivalent.

### Contributing

To add new submodules:

```
$ cd ~/.janus
$ git submodule add https://github.com/org/vim-plugin-repo
$ git commit
```

Be sure to add any requisite gems for your vim plugins to the Gemfile
and re-run `bundle install` if necessary.