Skip to content

jwineinger/dotvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

http://vimcasts.org/episodes/synchronizing-plugins-with-git-submodules-and-pathogen/

Installing your Vim environment on another machine

Once your vim configuration is under version control, it’s quite
straightforward to import your settings to any machine that has git installed.
If you followed the instructions above to put your vimrc and plugins in a
dotvim directory, then you can follow these steps to synchronise them to
another machine:

cd ~
git clone [email protected]:jwineinger/dotvim.git ~/.vim
ln -s ~/.vim/vimrc ~/.vimrc
cd ~/.vim
git submodule update --init


# To add a new plugin as a submodule
cd ~/.vim
git submodule add git://github.com/user/repo.git bundle/name
git ci -a -m "Added new bundle/submodule"
git push

About

Vim directory and config files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published