vim 配置python IDE
阿新 • • 發佈:2017-08-09
vim
#記錄
#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