Skip to content
This repository was archived by the owner on Oct 11, 2018. It is now read-only.

Commit a21f628

Browse files
authored
Merge pull request #67 from nold2/master
added a command to source vimrc, before :PlugInstall
2 parents a73aa17 + b0b9dcf commit a21f628

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ a part of the function declaration or not?)
622622
### Struct split and join
623623
There is a great plugin that allows you to split or join Go structs. It's
624624
actually not a Go plugin, but it has support for Go structs. To enable it add
625-
plugin directive between the `plug` definition into your `vimrc` and run
625+
plugin directive between the `plug` definition into your `vimrc`, then do a `:source ~/.vimrc` in your vim editor and run
626626
`:PlugInstall`. Example:
627627

628628
```vim
@@ -662,7 +662,7 @@ Vim-go supports two popular snippet plugins.
662662
[Ultisnips](https://github.com/SirVer/ultisnips) and
663663
[neosnippet](https://github.com/Shougo/neosnippet.vim). By default,
664664
if you have `Ultisnips` installed it'll work. Let us install `ultisnips`
665-
first. Add it between the `plug` directives in your `vimrc` and then run
665+
first. Add it between the `plug` directives in your `vimrc`, then do a `:source ~/.vimrc` in your vim editor and then run
666666
`:PlugInstall`. Example:
667667

668668
```vim
@@ -977,7 +977,7 @@ let g:molokai_original = 1
977977
colorscheme molokai
978978
```
979979

980-
After that restart Vim and call `:PlugInstall`. This will pull the plugin
980+
After that restart Vim and call `:source ~/.vimrc`, then `:PlugInstall`. This will pull the plugin
981981
and install it for you. After the plugin is installed, you need to restart Vim
982982
again.
983983

@@ -1162,7 +1162,7 @@ a certain plugin. The commands are:
11621162
First let us enable these two commands by installing the necessary plugin. The
11631163
plugin is called [ctrlp](https://github.com/ctrlpvim/ctrlp.vim). Long-time Vim
11641164
users have it installed already. To install it add the following line between
1165-
your `plug` directives and call `:PlugInstall` to install it:
1165+
your `plug` directives, then do a `:source ~/.vimrc` in your vim editor and call `:PlugInstall` to install it:
11661166

11671167
```vim
11681168
Plug 'ctrlpvim/ctrlp.vim'

0 commit comments

Comments
 (0)