diff --git a/README.md b/README.md
index c477678e53aaab2c1881ef08e2faba701efb2135..c5f72c30de56950ac349d12324d5bdf603145641 100644
--- a/README.md
+++ b/README.md
@@ -3,45 +3,4 @@ vimrc
 
 My .vimrc 
 
-Do all git and git submodule work from ~/vimrc
-
-Installing a plugin:
-
-```
-git submodule add https://github.com/<repo>/<plugin> .vim/pack/plugins/start/<pluginname>
-git add .
-git commit -m "installing <pluginname> as submodule"
-```
-
-Update all the plugins:
-```
-git submodule foreach git pull origin master
-git commit -am "Updated plugins."
-```
-
-Removing a plugin:
-```
-git submodule deinit .vim/pack/plugins/start/<pluginname>
-git rm -r .vim/pack/plugins/start/<pluginname>
-rm -r .git/modules/.vim/pack/plugins/start/<pluginname>
-```
-
-Updating a plugin:
-```
-cd .vim/pack/plugins/start/<pluginname>
-git pull origin master
-```
-
-Putting it on new machine:
-```
-git clone --recursive https://github.com/<username>/<reponame>.git
-```
-
-On a working machine, to get updates:
-```
-git pull
-git submodule update
-git submodule update --init --recursive
-```
-
-instructions based on readme from : https://gist.github.com/keeganstreet/923900/13504e9b05cb131d55d8db817f093045b834d8de
+This is my latest .vimrc and associated folders. It is now using Plug plugin to manage the plugins.