`
songbin0201
  • 浏览: 319899 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

搞定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

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics