diff options
author | Juan J. Martinez <jjm@usebox.net> | 2018-03-16 09:07:38 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:27 +0100 |
commit | eb85945410ae15e37dc7ac11352b6f052149e0bc (patch) | |
tree | 80dfc3c157aaa816b60c363d1d7c107a26d377ab | |
parent | 12c6fb9478e075378a10e204ee4a76837d7d66b6 (diff) | |
download | dotnvim-eb85945410ae15e37dc7ac11352b6f052149e0bc.tar.gz dotnvim-eb85945410ae15e37dc7ac11352b6f052149e0bc.zip |
Updated readme with some notes
-rw-r--r-- | README.md | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -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 |