Skip to content

Commit

Permalink
Add windows install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
timjk authored and starcraftman committed Nov 21, 2015
1 parent 8fb0efe commit 072d28e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,24 @@ A minimalist Vim plugin manager.
### Installation

[Download plug.vim](https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim)
and put it in ~/.vim/autoload
and put it in ~/.vim/autoload (UNIX) or ~/vimfiles/autoload (Windows).

###### Unix

```sh
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
```

###### Windows

```powershell
md ~\vimfiles\autoload
$uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
(New-Object Net.WebClient).DownloadFile($uri, 'vimfiles\autoload\plug.vim')
```

### Usage

Add a vim-plug section to your .vimrc:
Expand Down

0 comments on commit 072d28e

Please sign in to comment.