vim 配置python IDE

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vim 配置python IDE相关的知识,希望对你有一定的参考价值。

#记录

#vimrc配置

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

set nocompatible              " required
filetype off                  " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin ‘gmarik/Vundle.vim‘
Plugin ‘vim-scripts/indentpython.vim‘
Plugin ‘tmhedberg/SimpylFold‘
call vundle#end()            " required
set foldmethod=indent
set foldlevel=99
nnoremap <space> za
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>
Bundle ‘scrooloose/nerdtree‘
Bundle ‘Valloric/YouCompleteMe‘
let NERDTreeWinPos=‘right‘
let NERDTreeWinSize=30


本文出自 “Chauncey” 博客,请务必保留此出处http://cqwujiang.blog.51cto.com/10808946/1954623

以上是关于vim 配置python IDE的主要内容,如果未能解决你的问题,请参考以下文章

vim 配置python IDE

把 vim 配置成顺手的 python 轻量级 IDE

从零开始配置vim(27)——代码片段

Vim配置(python版)

从零开始配置vim(27)——代码片段

从零开始配置vim(27)——代码片段