Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added vundle install to readme, updated pathogen url to github #61

Merged
merged 1 commit into from Feb 6, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 11 additions & 2 deletions README.md
Expand Up @@ -4,12 +4,21 @@ Syntax highlighting, matching rules and mappings for [Markdown](http://daringfir

## Installation

If you use [Pathogen](http://www.vim.org/scripts/script.php?script_id=2332)(and you should), do this:
If you use [Vundle](https://github.com/gmarik/vundle), add the following line to your `~/.vimrc`:

Bundle 'plasticboy/vim-markdown'

And then run inside Vim:

:so ~/.vimrc
:BundleInstall

If you use [Pathogen](https://github.com/tpope/vim-pathogen), do this:

$ cd ~/.vim/bundle
$ git clone https://github.com/plasticboy/vim-markdown.git

To install without Pathogen, download the [tarball](https://github.com/plasticboy/vim-markdown/archive/master.tar.gz) and do this:
If you are not using any package manager, download the [tarball](https://github.com/plasticboy/vim-markdown/archive/master.tar.gz) and do this:

$ cd ~/.vim
$ tar --strip=1 -zxf vim-markdown-master.tar.gz
Expand Down