Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 949 Bytes

README.markdown

File metadata and controls

43 lines (31 loc) · 949 Bytes

Files

.vim directory of file type configurations and plugins .vimrc my vim configuration.

Install Detail

  1. git clone http://github.com/TimBao/dotvim.git ~/.vim
  2. ln -s ~/.vim/vimrc ~/.vimrc
  3. cd ~/.vim
  4. git submodule init
  5. git submodule update

on Windows

  1. cd $vim
  2. git clone http://github.com/TimBao/dotvim.git ./vimfiles
  3. mklink _vimrc vimfiles/vimrc
  4. cd vimfiles
  5. git submodule init
  6. git submodule update

  1. If you want to support chinese font, please change encodding to cp936

Update Plugin

  1. cd ~/.vim/bundle/vim-markdown # Replace vim-markdown to your plugin name
  2. git pull origin master

  1. cd ~/.vim
  2. git submodule foreach git pull origin master

Add new Plugin

  1. git submodule add XXX.git bundle/XXX
  2. git add .gitmodule
  3. git commit -m "add XXX plugin"
  4. git push origin master

Delete Plugin

git rm bundle/vim-markdown # Replace vim-markdown to your plugin name