搞定vim下的python开发环境(工欲善其事,必先利其器)

     先备忘几个vim下必备的插件,然后回头再整理下安装过程和使用心得

1、https://github.com/tpope/vim-pathogen  这个首选,vim下得插件安装和管理工具

 

2、https://github.com/scrooloose/nerdtree  习惯了eclipse ,没有目录管理的插件会不习惯的

 

3、设置代码高亮 ~/.vimrc 中添加

syntax on                           " syntax highlighing
filetype on                          " try to detect filetypes
filetype plugin indent on    " enable loading indent file for filetype

 

 4、https://github.com/ervandew/supertab  代码自动补全

au FileType python set omnifunc=pythoncomplete#Complete
let g:SuperTabDefaultCompletionType="context"
set completeopt=menuone,longest,preview

 

你可能感兴趣的:(python)