Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 593 Bytes

File metadata and controls

30 lines (23 loc) · 593 Bytes

Installation:

  git clone https://github.com/davidbl/dotvim ~/.vim

Create symlinks:

  ln -s ~/.vim/vimrc ~/.vimrc
  ln -s ~/.vim/gvimrc ~/.gvimrc #optional

Switch to the ~/.vim directory, and fetch submodules:

  cd ~/.vim
  git submodule init
  git submodule update

To install plugin as a git submodule, take the following steps:

  cd ~/.vim
  mkdir ~/.vim/bundle
  git submodule add http://github.com/<user_name>/<bundle_name>.git bundle/<bundle_name>
  git add .
  git commit -m "Install <bundle_name>.vim bundle as a submodule."