mirror of
https://github.com/junegunn/vim-plug.git
synced 2026-09-10 07:16:19 -04:00
Updated tutorial (markdown)
parent
efc11fe339
commit
7fca596757
|
|
@ -35,8 +35,8 @@ All you have to do is to download the file in a directory so that Vim can load i
|
|||
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
|
||||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
|
||||
# Neovim (~/.config/nvim/autoload)
|
||||
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \
|
||||
# Neovim (~/.local/share/nvim/site/autoload)
|
||||
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
|
||||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
```
|
||||
|
||||
|
|
@ -45,7 +45,7 @@ Installing plugins
|
|||
|
||||
With vim-plug, you declare the list of plugins you want to use in your
|
||||
Vim configuration file. It's `~/.vimrc` for ordinary Vim, and
|
||||
`~/.config/nvim/init.vim` for Neovim. The list should start with
|
||||
`~/.local/share/nvim/site/autoload/plug.vim` for Neovim. The list should start with
|
||||
`call plug#begin(PLUGIN_DIRECTORY)` and end with `call plug#end()`.
|
||||
|
||||
```vim
|
||||
|
|
|
|||
Loading…
Reference in a new issue