Two commands create Vim as the Python IDE method, vimpython
Run the following two commands to configure Vim (including plug-ins) to Python IDE. Currently, MAC and Ubuntu are supported.
curl -O https://raw.githubusercontent.com/vince67/v7_config/master/vim.shbash vim.sh
Example
What have you done?
A convenient bash script is written to configure VIM
The configuration used is from fisa-vim-config.
Script:
• Note 1: each time this script is run, the old ~ /. Backup the vimrc file to/tmp/vimrc. bak and replace the original ~ /. Vimrc file.
• Note 2: MAC and Ubuntu systems are currently supported.
• Script storage location
#!/bin/bash # install fisa vim config echo '===============================' echo 'start to install dependences...' case "$OSTYPE" in darwin*) brew install vim git pip curl;; linux*) sudo apt-get install vim exuberant-ctags git pip curl;; *) echo "unknown: OS: $OSTYPE, U should install dependences by yourself" ;; esac sudo pip install dbgp vim-debug pep8 flake8 pyflakes isort echo '===============================' echo 'start to download vimrc file...' cp ~/.vimrc /tmp/vimrc.bak curl -O https://raw.githubusercontent.com/fisadev/fisa-vim-config/master/.vimrc mv .vimrc ~/.vimrc echo '===============================' echo 'start to install vim plugins...' vim +BundleClean +BundleInstall! +qa sudo chown -R $USER ~/.vim/