VIM 配置python

  1. Pre-install

sudo yum install automake gcc gcc-c++ kernel-devel cmake

sudo yum install python-devel python3-devel

sudo yum install ctags-etags

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim


  1. Config in ~/.vimrc

        This config file has been downloaded from:

$ wget http://fileshare.englab.nay.redhat.com/pub/section3/libvirtmanual/lizhu/avocado/vimrc

$ mv vimrc ~/.vimrc

         Download the vimrc file, put it under ~/, then rename it as .vimrc


  1. Install Plugins

Launch vim and run :PluginInstall

To install from command line: vim +PluginInstall +qall


Note: If your plugin 'Valloric/YouCompleteMe' does not work, you can

$cd ~/.vim/bundle/YouCompleteMe


$./install.py --clang-completer

Or

$./install.py


--clang-completer is for semantic support for C-family languages, you can choose whether to use it.


Note: If your find some plugin do not work, maybe the reason originates from  the shortcuts related to the plugin. You can change them, and try again.


原文地址:https://www.cnblogs.com/weikunzz/p/6857976.html