Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 423 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 423 Bytes

.vim

Useful article

Vim settings for Python and Django

Cloning repository

git clone https://github.com/vgrechin/.vim.git

ln -s ~/.vim/.vimrc

Updating submodules

cd ~/.vim

git submodule update --init --remote --recursive

for dir in bundle/*; do (cd $dir && git checkout master && git pull); done

ls bundle | parallel 'cd {} && git checkout master && git pull'