My Vim setup. It consists essentially of pieces of code I stumbled upon the web and managed to put together. It aims to provide an integrated python development ambient and make LaTeX editing super fast.
Table of Contents
C:\Program Files\Git\cmd\
- Copy repository:
git clone git://github.com/brodroll/dotvim.git %userprofile%\vimfiles
- Create symlinks:
mklink %userprofile%\_vimrc %userprofile%\vimfiles\_vimrc
- Install vundle:
git clone https://github.com/gmarik/Vundle.vim.git %userprofile%/vimfiles/bundle/Vundle.vim
- Update plugins:
:PluginInstall
:PluginUpdate
- Download GIT:
$ apt-get install git
- Clone vimfiles repository:
git clone git://github.com/brodroll/dotvim.git ~/vimfiles
- Create symlinks:
$ln -s ~/vimfiles/vimrc ~/.vimrc
$ln -s ~/vimfiles/gvimrc ~/.gvimrc
- Install Vundle:
git clone https://github.com/gmarik/Vundle.vim.git ~/vimfiles/bundle/Vundle.vim
- Update plugins:
:PluginInstall
:PluginUpdate
To ignore the shell warnings, add to .bashrc file:
alias gvim="gvim 2>/dev/null"