My personal vim configuration.
For a quick and simply installation just run this command in your terminal to install and configure the vim in your $HOME dir:
wget -O - https://github.com/helielson/vim-config/raw/master/autoinstall.sh | sh
Clone this repo:
git clone git://github.com/helielson/vim-config.git
or download the plain source only:
wget -qO - http://github.com/helielson/vim-config/tarball/master | tar -xzvf -
In your ~/.vimrc, add the following line (PROJECT_DIR is the directory the project was cloned):
source PROJECT_DIR/vim-config/vim/vimrc
Fetch submodules:
cd vim-config git submodule update --init
Copy the content of vim folder to your .vim folder:
cp -r vim/* ~/.vim
Install the dependences:
pip install jedi pip install flake8
It's necessary to install some dependences for running some vim plugins: - The jedi-vim plugin depends of the jedi lib. - The vim-flake8 plugin depends of flake8 lib.