#1

  1. $ sudo apt-get install exuberant-ctags vim-scripts
  1. $ vim-addons install taglist

#2

到:http://www.vim.org/scripts/script.php?script_id=850去下载最新的pydiction;

按照:http://rkulla.github.io/pydiction/ 的文档去配置pydiction

#3

到http://www.vim.org/scripts/script.php?script_id=1658 下载和安装最新的NERD tree

按照:https://github.com/scrooloose/nerdtree 的文档去配置NERD tree

#4编辑 ~/.vimrc文件如下:

  1. filetype plugin on
  2. let g:pydiction_location = '/home/openstack/.vim/complete-dict'
  3. let g:pydiction_menu_height = 3
  4. let Tlist_Auto_Highlight_Tag=1
  5. let Tlist_Auto_Open=1
  6. let Tlist_Auto_Update=1
  7. let Tlist_Display_Tag_Scope=1
  8. let Tlist_Exit_OnlyWindow=1
  9. let Tlist_Enable_Dold_Column=1
  10. let Tlist_File_Fold_Auto_Close=1
  11. let Tlist_Show_One_File=1
  12. let Tlist_Use_Right_Window=1
  13. let Tlist_Use_SingleClick=1
  14. let Tlist_Ctags_Cmd='/usr/bin/ctags'
  15. nnoremap <silent> <F8> :TlistToggle<CR>
  16. autocmd FileType python
  17. autocmd FileType javascrīpt set omnifunc=javascriptcomplete#CompleteJS
  18. autocmd FileType html set omnifunc=htmlcomplete#CompleteTags
  19. autocmd FileType css set omnifunc=csscomplete#CompleteCSS
  20. autocmd FileType xml set omnifunc=xmlcomplete#CompleteTags
  21. autocmd FileType php set omnifunc=phpcomplete#CompletePHP
  22. autocmd FileType c set omnifunc=ccomplete#Complete
  23. set autoindent
  24. set tabstop=4
  25. set shiftwidth=4
  26. set expandtab
  27. set omnifunc=pythoncomplete#Complete
  28. set mouse=a
  29. set number
  30. set autochdir
  31.  
  32. autocmd StdinReadPre * let s:std_in=1

Ubuntu 14.04的vim编辑器配置Python开发环境的更多相关文章

  1. Ubuntu 14.04下搭建Node.js的开发环境

    最近想找一个轻量级且支持快速开发的服务开发平台,选来选去选择了Node.js,当时有几种选择: Python + Django(用过Django,虽然开发快速,但是感觉性能并不太好). Ruby + ...

  2. Ubuntu 14.04下安装eclipse搭建C++开发环境

    安装过程分为两部分:1.JAVA开发环境,即JDK的安装:2.eclipse的安装: 一.安装包下载 1.JDK官网下载地址:http://www.oracle.com/technetwork/jav ...

  3. 配置ubuntu 14.04.3 LTS odoo 9.0开发环境

    使用VMware Fusion 8.0.1创建ubuntu 64bit虚拟机:使用ubuntu-14.04.3-desktop-amd64.iso镜像缺省安装ubuntu,用户名odoo,密码1234 ...

  4. Ubuntu下使用Sublime Text 3配置Python开发环境

    因为电脑配置有些低端,所以只能使用Sublime来当作Python的IDE. 1.下载Sublime Text 3并安装 首先去官网找到64位的.tar.bz2的压缩文件下载: 使用命令或归档管理器将 ...

  5. Ubuntu 14.04 LTS 安装和配置Bochs

    Ubuntu 14.04 LTS 安装和配置Bochs       系统是:Ubuntu 14.04 LTS 64位 安装的是:bochs-2.6.8 Bochs 需要在 X11 环境下运行,因此你的 ...

  6. vim配置python开发环境

    vim配置python开发环境 一.安装vim sudo apt-get install vim 二.vim基础配置 #Centos6.5 /usr/share/vim/vim72 vi /etc/v ...

  7. Windows10内嵌Ubuntu子系统配置python开发环境

    Windows10内嵌Ubuntu子系统配置python开发环境 安装pycharm. 到intellij idea网站下载Linux环境下载免费的pycharm,通过ubuntu子系统内部的/mnt ...

  8. windows 10下sublime text3环境的搭建以及配置python开发环境

    1 - 安装Sublime Text 3 到官网下载对应的版本,如下: OS X (10.7 or later is required) Windows - also available as a p ...

  9. [转]Aptana Studio 3配置Python开发环境图文教程

    转载URL:http://www.cr173.com/html/49260_1.html 一.安装Aptana Studio 3 安装完运行时建议将相关默认工作目录设定在英文的某个目录下.避免可能出现 ...

随机推荐

  1. Yii2 radioList设置默认值

    可以在对应的Controller的action中设置 $model->type = 1; 在view中 <?php $form = ActiveForm::begin(); ?>   ...

  2. Python 之我见

    读音 Python(KK 英语发音:/ˈpaɪθən/) 序言 其实早前就已经接触了python这个功能强大的脚本语言,但是那时只是基于兴趣而学习,目的性并不是很强,所以学习的并不是很深入.最近由于闲 ...

  3. java系统高并发解决方案(转载)

    转载博客地址:http://blog.csdn.net/zxl333/article/details/8454319 转载博客地址:http://blog.csdn.net/zxl333/articl ...

  4. 常用sql,在做项目时用mysqlWorkBeach里面自动生成的

    -- 修改表中的字段的长度ALTER TABLE `sfkbbs`.`sfk_father_module` CHANGE ) NULL DEFAULT NULL COMMENT '父板块名字' ; 在 ...

  5. USACO 3.2 butter 最短路

    堆优化dijkstra /* PROB:butter LANG:C++ */ #include <iostream> #include <cstdio> #include &l ...

  6. Bzoj2440 完全平方数

    Time Limit: 10000MS   Memory Limit: 131072KB   64bit IO Format: %lld & %llu Description 小 X 自幼就很 ...

  7. Memory Allocation API In Linux Kernel && Linux Userspace、kmalloc vmalloc Difference、Kernel Large Section Memory Allocation

    目录 . 内核态(ring0)内存申请和用户态(ring3)内存申请 . 内核态(ring0)内存申请:kmalloc/kfree.vmalloc/vfree . 用户态(ring3)内存申请:mal ...

  8. 修改更新源sources.list,提高软件下载安装速度(提供Kali 2.0 更新源)

    1.切换到root用户(如果已经是root用户就直接看第二步) dnt@HackerKali:~$ su 密码: 2.用文本编辑器打开sources.list,手动添加下面的更新源 root@Hack ...

  9. C/C++中的getline函数总结:

    来自:http://www.cnblogs.com/xFreedom/archive/2011/05/16/2048037.html C/C++中的getline函数总结 getline函数是一个比较 ...

  10. js中查找一个字符是否存在。

    <script> var a = 'd'; var re = a.indexOf('d'); ){ alert('存在'); } else { alert('不存在'); } </s ...