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
- Host: GitHub
- URL: https://github.com/bval/vim-plugins
- Owner: bval
- Created: 2018-12-12T17:37:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-07T19:49:53.000Z (over 7 years ago)
- Last Synced: 2024-12-29T06:08:48.839Z (over 1 year ago)
- Language: Ruby
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.