aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2018-03-16 09:07:38 +0000
committerJuan J. Martinez <jjm@usebox.net>2022-05-29 22:57:27 +0100
commiteb85945410ae15e37dc7ac11352b6f052149e0bc (patch)
tree80dfc3c157aaa816b60c363d1d7c107a26d377ab /README.md
parent12c6fb9478e075378a10e204ee4a76837d7d66b6 (diff)
downloaddotnvim-eb85945410ae15e37dc7ac11352b6f052149e0bc.tar.gz
dotnvim-eb85945410ae15e37dc7ac11352b6f052149e0bc.zip
Updated readme with some notes
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/README.md b/README.md
index dfb7771..eb18bd4 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,31 @@
# My ~/.vim
+## Using it in a new location
+
+ cd ~ && git clone --recursive https://github.com/reidrac/dotvim.git
+
+If you're not using vim 8; create a `.vimrc` with:
+
+ runtime vimrc
+
+## Adding plugins
+
+ git submodule add https://github.com/user/foo.git bundle/foo
+ git commit -m "Added foo plugin"
+
+## Updating plugins
+
+ git submodule foreach git pull origin master
+ git commit -am "Updated plugins"
+
+### Updating you .vim on a different machine
+
+ git pull
+ git submodule update --remote
+
+## Removing plugins
+
+ git submodule deinit bundle/foo
+ git rm -r bundle/foo
+ rm -r .git/modules/bundle/foo