Two commands to make Vim a Python IDE method

Source: Internet
Author: User
You can configure Vim (including plug-ins) as a Python IDE by running the following two commands. Currently supports MAC and Ubuntu.

Curl-o Https://raw.githubusercontent.com/vince67/v7_config/master/vim.shbash vim.sh

Example

What did it do?

Wrote a handy bash script to configure vim

Use the configuration from the Fisa-vim-config effect explode

Attached script:
• Note: Each time you run this script, the old ~/.VIMRC file is backed up to/tmp/vimrc.bak and the original ~/.VIMRC file is replaced.
• Note two: currently supports Mac and Ubuntu systems.
• Where the script is stored

  #!/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/
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.