美文网首页TODO前端日报编程it互联网
程序员的编辑器-VIM(爱就是爱)

程序员的编辑器-VIM(爱就是爱)

作者: cjzhao | 来源:发表于2016-05-25 16:02 被阅读11723次

    一个好的编辑器,能提高程序员的开发效率,在我工作的前些年里,我一直用eclipse作为我的首选开发工具,因为企业级的应用开发,大部分是使用java语言,而eclipse应该是最好的选择,但也有很多问题一直困扰着我,比如eclipse比较耗资源、启动慢、编译更慢……。

    12年开始转向云服务管理平台的研发后,面对的是大量的C、shell、python、ruby等代码,我和我的团队开始使用vim,从此就深深的爱上了它。

    我是在我们团队里用vim用的最烂的,他们都比我用的好。

    这期间,我要感谢到我们团队短暂停留过的一个同事kony,他把vim发挥到了极致,让我眼花缭乱,坚定了我选择vim为首选开发工具的信心,并从此爱上vim。

    插件安装与配置

    vim自带的功能已经很强大,但如果想把它打造成一个功能强大的开发工具,还需要安装一些插件。

    使用linux的程序员们,应该对“包管理工具”都很熟悉,如centos中的yum,ubuntu中的apt-get。VIM的插件管理也可以和yum一样方便。

    首先登场的插件是管理VIM插件的插件Vundle。

    Vundle is short for Vim bundle and is a Vim plugin manager.

    下载Vundle

    执行下面的命令(请确保您已经安装了git):
    git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim

    配置Vundle

    编辑~/.vimrc文件,内容如下:

    set nocompatible              " be iMproved, required
    filetype off                  " required
    
    " set the runtime path to include Vundle and initialize
    set rtp+=~/.vim/bundle/Vundle.vim
    call vundle#begin()
    " alternatively, pass a path where Vundle should install plugins
    "call vundle#begin('~/some/path/here')
    
    " let Vundle manage Vundle, required
    Plugin 'gmarik/Vundle.vim'
    
    " The following are examples of different formats supported.
    " Keep Plugin commands between vundle#begin/end.
    " plugin on GitHub repo (github上的插件配置方案,tpope为用户名,vim-fugitive为repo名)
    Plugin 'tpope/vim-fugitive'
    " plugin from http://vim-scripts.org/vim/scripts.html(vim官方插件配置方法)
    Plugin 'L9'
    " Git plugin not hosted on GitHub(没有托管到github上的插件配置方法)
    Plugin 'git://git.wincent.com/command-t.git'
    " git repos on your local machine (i.e. when working on your own plugin)
    Plugin 'file:///home/gmarik/path/to/plugin'
    " The sparkup vim script is in a subdirectory of this repo called vim.
    " Pass the path to set the runtimepath properly.
    Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
    " Avoid a name conflict with L9
    Plugin 'user/L9', {'name': 'newL9'}
    
    " All of your Plugins must be added before the following line
    call vundle#end()            " required
    filetype plugin indent on    " required
    " To ignore plugin indent changes, instead use:
    "filetype plugin on
    "
    " Brief help
    " :PluginList          - list configured plugins
    " :PluginInstall(!)    - install (update) plugins
    " :PluginSearch(!) foo - search (or refresh cache first) for foo
    " :PluginClean(!)      - confirm (or auto-approve) removal of unused plugins
    "
    " see :h vundle for more details or wiki for FAQ
    " Put your non-Plugin stuff after this line
    

    配置文件中简单的加了点中文注释,简单的说就是根据不同的插件来源,使用相应的配置方法把它配置到call vundle#begin()和call vundle#end() 之间,别的东西看不看都无所谓。

    将上述配置文件中call vundle#begin()和call vundle#end() 之间除了Plugin 'gmarik/Vundle.vim'这一行之外的别的东西全部删除,如下:

    set nocompatible              " be iMproved, required
    filetype off                  " required
    
    " set the runtime path to include Vundle and initialize
    set rtp+=~/.vim/bundle/Vundle.vim
    call vundle#begin()
    " alternatively, pass a path where Vundle should install plugins
    "call vundle#begin('~/some/path/here')
    
    " let Vundle manage Vundle, required
    Plugin 'gmarik/Vundle.vim'
    " 新加插件放这儿哦
    
    call vundle#end()            " required
    filetype plugin indent on    " required
    " To ignore plugin indent changes, instead use:
    "filetype plugin on
    "
    " Brief help
    " :PluginList          - list configured plugins
    " :PluginInstall(!)    - install (update) plugins
    " :PluginSearch(!) foo - search (or refresh cache first) for foo
    " :PluginClean(!)      - confirm (or auto-approve) removal of unused plugins
    "
    " see :h vundle for more details or wiki for FAQ
    " Put your non-Plugin stuff after this line
    

    添加您的第一个插件

    使用vim打开~/.vimrc,在call vundle#end()之前一行增加Plugin 'The-NERD-tree',然后执行Esc :w,保存文件。

    此时只是在配置文件中增加了插件配置,而真正的插件还未安装,您还需要在vim命令模式执行:PluginInstall,当您看到最下面一行的Done!时才完成插件的安装。如下图所示:

    vimPluginInstall.jpg

    Vundle插件还支持下面的命令:

    :PluginList          - 列出已经配置的插件
    :PluginInstall(!)    - 安装 (更新) 插件
    :PluginSearch(!) foo - 查询foo插件
    :PluginClean(!)      - 清除已下载但未配置的插件
    

    试一试

    刚才配置的插件The-NERD-tree是一个“文件目录树结构浏览器”(用词可能不太合适),如果您在VIM命令模式输入:NERDTree后,看到下图所效果,那么恭喜您,您的第一个插件已经安装成功。

    vimnerdtree.jpg

    您可以在左侧目录导航窗口内选择要编辑的文件,打开在右侧编辑框里编辑。

    一张图说事

    本书不会详细介绍VIM的基础使用方法,但下面一张图几乎包含了全部,这张图片忘了出处了(请图原作者联系我注明,在此表示感谢),这张图在我的桌面一放就是两年了。

    vimuse.png

    常用插件###

    这部分内容会随着我的积累,不断的增加新内容哦,这就是电子书的好处。

    请自由发挥吧!###


    国际范程序必读:
    向开源社区贡献您的代码
    在github上写博客
    企业级应用开发和Maven之间的那些事
    DevOps是什么东东?
    js依赖管理工具bower
    JS模块化编程-requirejs

    相关文章

      网友评论

      • 59ffd6a9654c:我的vim配置,欢迎star和fork
        https://github.com/Leptune/vim-for-coding
      • 李鼎:自己学习Vim的记录 https://github.com/oldratlee/vim-practice ,包含了学习资料和碰到的问题。
      • seay:确实不错,需要有耐心的学习使用
      • 洛埋名:最后的我也放了好久了
      • yiltoncent:之前公司的同事也是用Vim,推荐我用vundle,感觉用熟了特别爽,有掌控一切的力量。
      • 洋葱2233:vim主要是录入速度优势明显
      • 4588e4274830:notepad++
      • _士心_:被逼无奈Linux的sublime不支持中文。。转vim
        _士心_:@iceblue123 sublime?
        疯狂的冰块:@外城士心月月鸟 不是有插件支持吗?
      • c0825a5f3de2:很强大! 赞\(≧▽≦)/
      • 斐波那契的数字:语言风格不错。我喜欢
      • 卿卿木子七:楼主,学好vim真的就那么强大么。我们用的linux开发
        卿卿木子七:@cjzhao 楼主那你还有没有有关vim操作或者插件之类的文章,求赐教。
        cjzhao:那是一定的
      • d384b3196238:适合写脚本 适合linux
      • liycode:不能怪Eclipse启动慢,编译慢,是你电脑配置不行。
        ae95acf1d98f:@iceblue123 那个比eclipse更占资源。
        疯狂的冰块:@liycode 可以用idea呀,Android studio都是根据idea来设计的
        cjzhao:@liycode 感觉太重了
      • 牙哥:我只用常用是的功能,用了之后用其他编辑器都觉得没有vim好使
      • f1e8cdaadb4c:还算st3吧,懒得折腾。而且中文支撑不友好
      • lxyz22zp:就算为了装B,也得学学
      • xinxingzhao:确实需要狠心虐一下自己才能把这个编辑器用好,其实这也是磨练意志的一个过程,在编程过程中会遇到各种各样的问题,经过vim的洗礼,遇到问题也不会那么急躁。我用vim也用了快一年了,现在编程就是享受。
        xinxingzhao: @蔬菜_ 如果用vim写java,那已经到了一定境界了,现在我只是用来写Python。
        ae95acf1d98f:@xinxingzhao 写java始终没有idea享受
      • 367e042757aa:学习下
      • b1a4bbffb013: :+1: 神器,但是还没学....
        b1a4bbffb013:@iceblue123 就好像习惯了机械键盘,就受不了普通的键盘了.... 的确需要不少学习时间,不过工具嘛,慢慢学..... :whale2:
        疯狂的冰块:@剑鱼 感觉学习成本有点高
      • b5238f9f304a:vim门槛高,我一般都用sublime。
        向日葵的笑:@loeatore 一样
      • seay:vim需要有耐心学
      • 清素家园:很想看懂,但的确看不懂

      本文标题:程序员的编辑器-VIM(爱就是爱)

      本文链接:https://www.haomeiwen.com/subject/lustdttx.html