基础配置

vim的配置是在用户主目录下的 ~/.vimrc 文件中完成的,如果没有的话,需要自己新建一下:

  1. cd ~
  2. touch .vimrc

首先做些简单的配置:

  1. set nocompatible "关闭与vi的兼容模式
  2. set number "显示行号
  3. set nowrap "不自动折行
  4. set showmatch "显示匹配的括号
  5. set scrolloff=3 "距离顶部和底部3行"
  6. set encoding=utf-8 "编码
  7. set fenc=utf-8 "编码
  8. set mouse=a "启用鼠标
  9. set hlsearch "搜索高亮
  10. syntax on "语法高亮

为py文件添加下支持pep8风格的配置:

  1. au BufNewFile,BufRead *.py
  2. \ set tabstop=4 "tab宽度
  3. \ set softtabstop=4
  4. \ set shiftwidth=4
  5. \ set textwidth=79 "行最大宽度
  6. \ set expandtab "tab替换为空格键
  7. \ set autoindent "自动缩进
  8. \ set fileformat=unix "保存文件格式

分割窗口

vim在编辑的时候就可以打开多个文件:

:vs  或者 :vsplit  将当前窗口竖直分割,并在上面新窗口中显示当前文件

:vs filename 将当前窗口竖直分割,新文件在新窗口中显示

:sp 或者:sv或者:split  将当前窗口水平分割,并在左边新窗口中显示当前文件

:sp filename 将当前窗口竖直分割,新文件在左边新窗口中显示

:new 新建文件并竖直分割

:vnew 新建文件并水平分割

如果想让新窗口在右边或者下方打开,添加配置:

  1. set splitbelow
  2. set splitright

在窗口之间切换可以用鼠标,如果不想用鼠标,切换按键如下:

  • Ctrl-w-j 切换到下方的分割窗口
  • Ctrl-w-k 切换到上方的分割窗口
  • Ctrl-w-l 切换到右侧的分割窗口
  • Ctrl-w-h 切换到左侧的分割窗口

觉得三个按键多的话可以设置快捷键:

  1. nnoremap <C-J> <C-W><C-J>
  2. nnoremap <C-K> <C-W><C-K>
  3. nnoremap <C-L> <C-W><C-L>
  4. nnoremap <C-H> <C-W><C-H>

这样就不用按w键了。

代码折叠

当代码行数很多的时候,代码折叠是很必须的:

  1. set foldmethod=indent
  2. set foldlevel=99

使用zc按键来创建折叠,使用za来打开或者关闭折叠。

za经常会误输入,可以用空格键来替代za:

  1. nnoremap <space> za

一键执行python代码

如果想直接在vim中执行python代码,可以添加(来自https://www.zhihu.com/question/20271508):

  1. map <F5> :call RunPython()<CR>
  2. func! RunPython()
  3. exec "W"
  4. if &filetype == 'python'
  5. exec "!time python2.7 %"
  6. endif
  7. endfunc

这样,按F5键python代码就可以自动执行了

插件

vim插件中最主要的就是vundle了,vundle用来管理vim的其它插件

Vundle

Vundle 是 Vim bundle 的简称,使用git来管理vim插件,有了它,安装其它插件就方便很多。

项目地址https://github.com/VundleVim/Vundle.vim

首先下载源码:

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

如果~/.vim/bundle目录不存在,则新建目录:

  1. cd ~
  2. mkdir .vim
  3. cd .vim
  4. mkdir bundle

然后将下列配置放在.vimrc文件的开头:

  1. set nocompatible " be iMproved, required
  2. filetype off " required
  3.  
  4. " set the runtime path to include Vundle and initialize
  5. set rtp+=~/.vim/bundle/Vundle.vim
  6. call vundle#begin()
  7.  
  8. " let Vundle manage Vundle, required
  9. Plugin 'VundleVim/Vundle.vim'
  10.  
  11. " All of your Plugins must be added before the following line
  12. call vundle#end() " required
  13. filetype plugin indent on " required

如果想下载某个插件,比如自动缩进indentpython.vim插件,需要将

  1. Plugin 'vim-scripts/indentpython.vim'

置于call vundle#begin()和call vundle#end()之间,保存配置后在vim中执行

  1. :PluginInstall

即可以自动下载indentpython.vim插件了。

bundle可以管理下载几种不同的插件,方式如下:

  1. github上的插件
  2. Plugin 'tpope/vim-fugitive'
  3. 来自于http://vim-scripts.org/vim/scripts.html的插件
  4. Plugin 'L9'
  5. github上的git插件
  6. Plugin 'git://git.wincent.com/command-t.git'
  7. 本地插件
  8. Plugin 'file:///home/gmarik/path/to/plugin'
  9. " The sparkup vim script is in a subdirectory of this repo called vim.
  10. " Pass the path to set the runtimepath properly.
  11. " Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
  12. 有旧插件的情况下,下载新的插件并重命名以避免冲突
  13. Plugin 'ascenator/L9', {'name': 'newL9'}

下载方式除了在vim中运行:PluginInstall外,还可以在命令行中运行:

  1. vim +PluginInstall +qall

其它常用的命令:

  1. :PluginList - lists configured plugins
  2. :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
  3. :PluginSearch foo - searches for foo; append `!` to refresh local cache
  4. :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal

YouCompleteMe

非常好用的自动补全插件,就是比较重。

官网地址:http://valloric.github.io/YouCompleteMe/

github地址:https://github.com/Valloric/YouCompleteMe

YouCompleteMe安装后还需要手动编译,然后再在.vimrc中配置。

在ubuntu中使用,首先准备一些工具:

  1. sudo apt-get install build-essential cmake
  1. sudo apt-get install python-dev python3-dev

使用vundle安装:

  1. Plugin 'Valloric/YouCompleteMe'

编译:

  1. cd ~/.vim/bundle/YouCompleteMe
  2. ./install.py --clang-completer

参数 --clang-completer是为了加上C系列语言的自动补全,也可以不加:

  1. cd ~/.vim/bundle/YouCompleteMe
  2. ./install.py

耐心等待吧,要花很长时间...

复制一下默认配置文件到用户主目录:

  1. cp third_party/ycmd/examples/.ycm_extra_conf.py ~/

YCM常用的一些选项,可根据个人喜好调整:

  1. let g:ycm_min_num_of_chars_for_completion = 2 "开始补全的字符数"
  2. let g:ycm_python_binary_path = 'python' "jedi模块所在python解释器路径"
  3. let g:ycm_seed_identifiers_with_syntax = 1 "开启使用语言的一些关键字查询"
  4. let g:ycm_autoclose_preview_window_after_completion=1 "补全后自动关闭预览窗口"

代码跳转:

  1. nnoremap <leader>jd :YcmCompleter GoToDefinitionElseDeclaration<CR>

开关YCM:

  1. let g:ycm_auto_trigger = 0 "turn off
  2. let g:ycm_auto_trigger = 1 "turn on

支持vim8的补全插件

YouCompleteMe实际上是使用jedi-vim来补全python代码的,如果觉得YCM实在太重,可以使用支持vim8的maralla/completor.vim来补全代码:

下载:

  1. Plugin 'maralla/completor.vim'

下载jedi:

  1. pip install jedi

配置:

  1. let g:completor_python_binary = '/path/to/python/with/jedi/installed'

设置起来比YCM简单很多了。

自动缩进插件

写python代码,自动缩进是必须的,可以使用indentpython.vim插件:

  1. Plugin 'vim-scripts/indentpython.vim'

语法检查

安装syntastic插件,每次保存文件时Vim都会检查代码的语法:

  1. Plugin 'vim-syntastic/syntastic'

添加flake8代码风格检查:

  1. Plugin 'nvie/vim-flake8'

运行F7就可以进行flake8检查了。

配色方案

solarized配色方案已经流行很久了,github地址https://github.com/altercation/vim-colors-solarized

手动下载:

  1. $ cd ~/.vim/bundle
  2. $ git clone git://github.com/altercation/vim-colors-solarized.git
  3. $ mv vim-colors-solarized ~/.vim/bundle/

或者vundle下载:

  1. Plugin 'altercation/vim-colors-solarized'

solarized有dark和light两种配色,配置:

  1. syntax enable
  2. set background=light or dark
  3. colorscheme solarized

也可以根据gui模式和终端模式进行切换:

  1. if has('gui_running')
  2. set background=light
  3. else
  4. set background=dark
  5. endif

另外一种配色Zenburn方案:

  1. Plugin 'jnurmine/Zenburn'

两种配色切换:

  1. if has('gui_running')
  2. set background=dark
  3. colorscheme solarized
  4. else
  5. colorscheme Zenburn
  6. endif

nerdtree

给vim添加一个树形目录,地址https://github.com/scrooloose/nerdtree

下载:

  1. Plugin 'scrooloose/nerdtree'

添加开关树形目录的快捷键:

  1. map <C-n> :NERDTreeToggle<CR>

Ctrl+n就可以开启目录了。

设置忽略.pyc文件:

  1. let NERDTreeIgnore=['\~$', '\.pyc$', '\.swp$']

为nerdtree添加git支持:

  1. Plugin 'Xuyuanp/nerdtree-git-plugin'

如果你想用tab键:

  1. Plugin 'jistr/vim-nerdtree-tabs'

vim-powerline

美化状态栏,可以显示当前的虚拟环境、Git分支、正在编辑的文件等信息。

  1. Plugin 'Lokaltog/vim-powerline'

indentLine

缩进指示线,地址https://github.com/Yggdroot/indentLine

安装:

  1. Plugin 'Yggdroot/indentLine'

开关:

  1. :IndentLinesToggle

python是靠代码缩进来判断代码块的,缩进指示线还是很方便的。

vim-autopep8

自动格式化工具,安装后运行:Autopep8就可以自动依照pep8的标准自动格式化代码。

地址https://github.com/Yggdroot/indentLine

首先安装autopep8:

  1. $ pip install autopep8
  1. Plugin 'tell-k/vim-autopep8'

可以设置快捷键F8代替:Autopep8:

  1. autocmd FileType python noremap <buffer> <F8> :call Autopep8()<CR>

auto-pairs

自动补全括号和引号等,地址https://github.com/jiangmiao/auto-pairs

  1. Plugin 'jiangmiao/auto-pairs'

ctrlp.vim

搜索插件,在vim normal模式下,按下ctrl+p,然后输入你要寻找的文件就行了。

地址https://github.com/kien/ctrlp.vim

  1. Plugin 'kien/ctrlp.vim'

ag.vim

搜索引擎使用了the_silver_searcher

  1. apt-get install silversearcher-ag
  2. or
  3. brew install the_silver_searcher

插件

  1. Plugin 'rking/ag.vim'

使用

  1. :Ag [options] {pattern} [{directory}]

vim-fugitive

git集成插件,可以在vim中运行git命令,https://github.com/tpope/vim-fugitive

  1. Plugin 'tpope/vim-fugitive'

  

使用vim打造自己的python编辑器的更多相关文章

  1. vim打造简易C语言编辑器(在用2016.7.10)

    vim和C语言都需要长期的学习,才能够精通,我制作了这个简单的笔记,主要的作用是,不要在重复的,反复的找同一样东西了,积累是成功的关键. 1. 安装pathogen插件管理器. 在官网下载pathog ...

  2. (转)Vim的Python编辑器详细配置过程 (Based on Ubuntu 12.04 LTS)

    为什么要用vim编辑py文件? 因为在Linux命令行中,缺少图形界面的IDE,vim是最佳的文本编辑器,而为了更好的编辑py文本,所以配置vim. 1. 安装完整版vim vi和vim的区别? 在L ...

  3. Vim 的 Python 编辑器详细配置过程 (Based on Ubuntu 12.04 LTS)

    为什么要用vim编辑py文件? 因为在Linux命令行中,缺少图形界面的IDE,vim是最佳的文本编辑器,而为了更好的编辑py文本,所以配置vim. 1. 安装完整版vim vi和vim的区别? 在L ...

  4. 转载 - Vim 的 Python 编辑器详细配置过程 (Based on Ubuntu 12.04 LTS)

    出处:http://www.cnblogs.com/ifantastic/p/3185665.html Vim 的 Python 编辑器详细配置过程 (Based on Ubuntu 12.04 LT ...

  5. python编辑器对比和推荐

    python编辑器对比和推荐   我先给一个初步的表格吧,大家如果有什么意见,或有补充,欢迎提出.有些我没有用过,先不写了.以下是我使用过的python IDE: 除了PythonWin, Visua ...

  6. 使用vim打造python-ide

    一.前言 一直希望在linux下进行python开发,但是linux不想启动图形化界面,所以干脆直接用上了万能的VIM,用VIM打造了属于自己的python-IDE 二.插件 标签导航(tagbar和 ...

  7. 4种好用的python编辑器

    1.Sublime Text: 这是一个轻量级的代码编辑器,跨平台,支持几十种编程语言,包括Python,Java,C/C++等,小巧灵活,运行轻快,支持代码高亮.自动补全.语法提示,插件扩展丰富,是 ...

  8. 最流行的Python编辑器/IDEs你认识吗?

    来源商业新知网,原标题:来!带你认识几种最流行的Python编辑器/IDEs(附链接) 大数据文摘授权转载自数据派THU 作者:By Gregory Piatetsky 格雷戈里·皮亚特斯基,KDnu ...

  9. Python编辑器IDLE傻瓜入门

    转自:http://bbs.csdn.net/topics/390451617 下载python进行安装,默认自带此工具开始->程序->Python 2.*/3.*-> IDLE ( ...

随机推荐

  1. Pycharm进行版本管理

    即然pycharm为python提供了这么强大的IDE,那么,我们代码管理,没理由不用版本管理工具Git,SVN等等 在pychram中使用GitHub进行代码管理;需要准备: 1)GitHub帐号: ...

  2. linux 系统 cp: omitting directory 问题解决

    在linux系统中复制文件夹时提示如下: cp: omitting directory `foldera/' 其中foldera是我要复制的文件夹名,出现该警告的原因是因为foldera目录下还存在目 ...

  3. ajax提交完表单数据依然跳转的解决办法

    1. 既然ajax提交数据,就把表单里面submit按钮换掉,因为触发submit他就会跳转页面 提交的时候他会先触发ajax 再触发submit的提交 2.如果确定了表单没有submit,那么把提交 ...

  4. FileFilter文件过滤器

    引入:将E:\java目录下的所有.java文件复制到E:\jad目录下,并将原来的文件的扩展名从.java改为.jad package com_2; import java.io.File; imp ...

  5. leetCode-linkedListCycle判断链表是否有环

    题目 Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using ...

  6. 水题C

    某校大门外长度为L的马路上有一排树,每两棵相邻的树之间的间隔都是1米.我们可以把马路看成一个数轴,马路的一端在数轴0的位置,另一端在L的位置:数轴上的每个整数点,即0,1,2,……,L,都种有一棵树. ...

  7. 五 js对象简介

    对象简介 js中没有"类"的概念,只有对象. A:对象声明方式有三种 ------------1.调用Object函数创建对象: var person = new Object; ...

  8. 鼠标移动上去,元素旋转;web前端鼠标经过图片凸起

    .trans-rotate{ -webkit-transition: transform .25s linear; -moz-transition: transform .25s linear; -o ...

  9. 记一次CentOS5.7更新glibc导致libc.so.6失效,系统无法启动

      以下是错误示范,错误过程还原,请勿模仿!!! wkhtmltopdf 启动,提示/lib64/libc.so.6版本过低 $ ./wkhtmltopdf http:www.baidu.com 1. ...

  10. 【转】SQLyog SSH 密钥登陆认证提示: No supported authentication methods available 解决方法

    问题背景: 问题原因: SQLyog不支持非标准的的私钥格式 解决方案: 使用puttyGen重新导入原来的私钥,然后重新保存成PPK证书文件,最后用SQLyog加载该PPK文件即可. 效果截图: 原 ...