Sha256: 24c6aeccf234a8daa306ba05bb1f4cf2306a896e761c4e308af5542b0a7ad91b

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

# ☣ Infect

Asset Pipeline Bundler for Vim and Pathogen

## Installation

Infect has no dependencies other than a recentish version of ruby. And can be installed as a standalone script, perhaps in your `~/bin` directory.

    $ curl https://raw.github.com/csexton/infect/master/standalone/infect > ~/bin/infect && chmod +x ~/bin/infect

Or if you prefer to manage it at a gem:

    $ gem install infect

## Objective

The point of Infect it to make it easy to manage your vim config. You should be able to check in your `.vimrc` into source control and use that one file to easily install any plugins you need.

## Usage

Infect reads your `.vimrc` file and looks for magic comments. It uses those to install pathogen style vim bundles. A minimal `.vimrc` to use with infect would look like this:

    "=bundle tpope/vim-pathogen
    "=bundle tpope/vim-sensible
    source ~/.vim/bundle/vim-pathogen/autoload/pathogen.vim
    execute pathogen#runtime_append_all_bundles()
    syntax on
    filetype plugin indent on

Just put those lines at the top of your vimrc and infect will install pathogen and the bundles for you.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
infect-0.0.3 README.md