From 21bb3cf0470af2632a6f6d5b8178b1a0f39888dc Mon Sep 17 00:00:00 2001 From: Bradley Small <vc.Bradley.Small@lowes.com> Date: Wed, 13 Nov 2019 14:24:11 -0500 Subject: [PATCH] updating readme now moved to Plug --- README.md | 43 +------------------------------------------ 1 file changed, 1 insertion(+), 42 deletions(-) diff --git a/README.md b/README.md index c477678..c5f72c3 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. -- GitLab