发现了一个很棒的vim配置方法,现在共享给大家。

https://github.com/kepbod/ivim

 

ivim - The Vim Distribution of Xiao-Ou Zhang

See ivim's states on GitEgo

Installation

Manual Install

  1. A Vim/MacVim/gVim with version higher than 7.3 has been installed on your computer, and back up your origin vim stuff;
  2. Install Vundle to install and update plugins, git clone git://github.com/gmarik/vundle.git $HOME/.vim/bundle/vundle;
  3. Install hybrid theme, git clone git://github.com/w0ng/vim-hybrid.git $HOME/.vim/bundle/vim-hybrid;
  4. Get ivim from github website, git clone git://github.com/kepbod/ivim.git $HOME/ivim;
  5. Make symbolic links of vimrc to your home directory, ln -s $HOME/ivim/vimrc $HOME/.vimrc;
  6. Install plugins, vim +BundleInstall! +BundleClean! +qa!;
  7. Just enjoy it!

Automatic Install (*nix only)

via 'curl'

curl -L https://raw.github.com/kepbod/ivim/master/tools/bootstrap.sh | bash

via 'wget'

wget --no-check-certificate https://raw.github.com/kepbod/ivim/master/tools/bootstrap.sh -O - | bash

Updating

bash $HOME/ivim/tools/update.sh

If you confront errors when you update vim plugins, please run command below.

bash $HOME/ivim/tools/restore.sh

Requirements

Vim

  • This distribution is adapted to both Vim and MacVim/gVim. Remember that the Vim/MacVim/gVim version should be 7.3+, or errors would occur!

Git

  • All the installations are based on Git which is a famous distributed revision control system. If you use Windows, you may need install msysgit.

Ctags

  • Ctags generates an index (or tag) file of language objects found in source files that allows these items to be quickly and easily located by a text editor or other utility. I recommend you to use Exuberant Ctags.

To use this distribution with less bugs, please get more suggestions from here

Features

Beautiful

Efficient

This distribution is completely customisable using a ~/.vimrc.local~/.gvimrc.local and ~/.vimrc.bundles.local!

Plugin List

  • Vundle - Manage the Vim scripts
  • Tagbar - Browse the tags of source code files
  • NERD_tree - Explore filesystem and to open files and directories
  • NERD_commenter - Provide many different commenting operations and styles
  • Neocomplcache - Performs keyword completion by maintaining a cache of keywords
  • surround - Provide mappings to delete, change and add surroundings in pairs
  • delimitMate - Provides automatic closing of quotes, parenthesis, brackets, etc.
  • Ctrlp - Full path fuzzy file, buffer, mru and tag finder with an intuitive interface
  • Ag - A front for ag, A.K.A. the_silver_searcher
  • Ack - A replacement for 'grep' using Perl module App::Ack
  • Tabular - Line up text easily
  • Syntastic - Syntax check that runs files through external syntax checkers
  • EasyMotion - Provide a much simpler way to use some motions in Vim
  • Indent Guides - Visually display indent levels in Vim
  • fugitive - Git wrapper
  • Gundo - Visualize Vim undo tree
  • EasyTags - Automated tag generation and syntax highlighting in Vim
  • Powerline - Create better-looking, more functional Vim statuslines
  • SingleCompile - Compile or run a single source file without leaving Vim
  • CamelCaseMotion - Refine words motion in Vim
  • Zencoding - High-speed HTML, XML, XSL coding and editing
  • Splitjoin - Switch between a single-line statement and a multi-line one
  • Unite - Search and display information from arbitrary sources
  • rails.vim - Plugin for working with Ruby on Rails applications
  • Indent Object - Text objects based on indent levels
  • NrrwRgn - Focus on a region and making the rest inaccessible
  • unimpaired.vim - Complementary pairs of mappings
  • abolish.vim - Search for, substitute, and abbreviate multiple variants of a word
  • vimux - Easily interact with tmux from vim
  • markdown-preview - Select Markdown text, render to HTML and preview in browser
  • unite-outline - Provide your Vim's buffer with the outline view
  • swap-parameters - Swap parameters
  • autolink.vim - Find and insert URLs for links in Markdown and ReST documents
  • textobj-word-column.txt - Make operating on columns of code conceptually simpler and reduces keystrokes
  • vim-speeddating Use CTRL-A/CTRL-X to increment dates, times, and more
  • GoldenView.vim Manage windows more convenient
  • vim-startify Provide a good start screen for vim
  • vim-multiple-cursors Provide Sublime Text's awesome multiple selection feature to vim

Each plugin has its unique requirements and configurations, so if you have any questions with them, please check help files of them first!

Vim Tips

Learning Vim

  • A good learning method of Vim is vimtutor, a 30 minute tutorial that teaches the most basic Vim functionality hands-on.

    To try it, just type vimtutor on terminal.

  • Another way to get familiar with Vim commands and settings is just rely on the strong help system of Vim.

    It's easy and convenient to type :h or :help in Vim for help of whatever you want to know.

  • A beautiful Vim cheat sheet is available here. If you want one, just click it!

Key Mappings

  • Because I have set some key mappings for more convenient typing and checking, you may feel inconvenient with them at start. But if you get familiar with them, I'm sure you will love them.

    You can just type :map in Vim to see them.

More Tips

  • Vim_Tips_Wiki is an excellent website, and you can learn much from it.
  • Vimcasts publishes free screencasts about Vim. It's useful and interesting! Believe me!

Hope You Enjoy Vimming

Notes

This distribution refers to many other famous Vim configurations (mainly contain spf13-vimChampions' Configuration and Steve's Configuration), so there may be some unavoidable errors in it, but I'll try my best to make it work well. If you have any questions, please feel free to post your issues and suggestions! Thanks!

Lisence

ivim - The Vim Distribution of Xiao-Ou Zhang

Copyright (C) 2013 Xiao-Ou Zhang

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

(转) 共享个很棒的vim配置的更多相关文章

  1. Env:VIM配置

    注:文章来自于http://www.cnblogs.com/ma6174/archive/2011/12/10/2283393.html 花了很长时间整理的,感觉用起来很方便,共享一下. 我的vim配 ...

  2. VIM配置(转载)

    注: 转载于http://www.cnblogs.com/ma6174/ 花了很长时间整理的,感觉用起来很方便,共享一下. 我的vim配置主要有以下优点: 1.按F5可以直接编译并执行C.C++.ja ...

  3. Vim实用技巧系列 - 利用百度云和git实现vim配置多机共享

    Vim是一个强大的文本编辑器.良好的配置更能便利对Vim的使用.有时候,我们会在几台不同的电脑上使用Vim. 例如,我们可能在自己的电脑和公司的电脑上都安装了Vim. 有时候,我们需要实现,如果我们配 ...

  4. Vim配置及使用技巧

    要说Linux下比较好用的文本编辑器,我推荐vim(当然很多人都用emacs,可我没用过),用vim也有一年左右,有些心得体会想与诸位分享.在我的学习过程中,借鉴了不少优秀的博客,其中有csdn大神n ...

  5. linux服务器共享给windows的client打印机配置

    最近实验室新进来一台服务器还有打印机,老大意思让服务器连接打印机并进行网络共享,其他的人可以通过自己的PC连接到共享打印机,打印各自电脑的文件.这样的需求可能很多人都有遇到,我也是遇到这件事,在网上搜 ...

  6. Spring Boot 揭秘与实战(四) 配置文件篇 - 有哪些很棒的特性

    文章目录 1. 使用属性文件2. YAML文件 1.1. 自定义属性 1.2. 参数引用 1.3. 随机数属性 1.4. application-{profile}.properties参数加载 3. ...

  7. acm的ubuntu (ubuntu16.04 安装指南,chrome安装,vim配置,git设置和github,装QQ)

    日常手贱把ubuntu14.04更新到了16.04,然后就game over了.mdzz,不然泥萌也看不到这篇博客了=.= 然后花了些时间重装了一个16.04版的,原来那个14.04的用可以用,就是动 ...

  8. 简单快捷好用的vim配置和终端配置推荐

    vim 配置实用spf13-vim,安装方便简单快捷,极力推荐. 另外oh-my-zsh 终端配置很好,与之搭配使用效果更佳. 安装都很简单,一个脚本搞定, 都是在gitHub上开源的,自行搜索,这里 ...

  9. 快速学习C语言三: 开发环境, VIM配置, TCP基础,Linux开发基础,Socket开发基础

    上次学了一些C开发相关的工具,这次再配置一下VIM,让开发过程更爽一些. 另外再学一些linux下网络开发的基础,好多人学C也是为了做网络开发. 开发环境 首先得有个Linux环境,有时候家里机器是W ...

随机推荐

  1. 如何使用Total Recorder录制网上的音乐,如何下载只能试听的歌曲

    1 在网上找到了对应的网站.其中正在播放的歌曲正是我们想要的 2 在地址栏输入上面音乐网站的网址,并点击捕获广播.(URL直接给出了音乐的完整地址,比如http://www.someserver.co ...

  2. Navicat如何直接修改表中数据?

    Navicat如何直接修改表中数据?

  3. 用Python读取大文件

    通常我们在读取文件的时候,会用到read(), readline(), readlines(). 通常可能会有这样的用法: def test1(): with open("/tmp/test ...

  4. Zuul使用Ribbon配置自动重试

    spring cloud的版本不断演进,导致很多配置的配置方式不断改变,有时某个配置在一个版本里面默认是true,后边一升级默认成了false,这点让人有点不爽. 言归正传 0.所使用版本 sprin ...

  5. oracle-imp导入小错filesize设置

    ***********************************************声明*************************************************** ...

  6. 使用PhoneGap开发基于Html5应用二:第一个PhoneGap应用:百度

    上一篇博文使用PhoneGap开发基于Html5应用一:PhoneGap简单介绍 中我介绍了怎样从phonegap官网上下载源代码并启动第一个应用,今天我们把phonegap的应用略微改一下,让他实现 ...

  7. LeetCode(35):Palindrome Number

    Determine whether an integer is a palindrome. Do this without extra space. Some hints: Could negativ ...

  8. 给你的博客加上“Fork me on Github”彩带(转)

    给你的博客加上“Fork me on Github”彩带 https://www.cnblogs.com/Leo_wl/p/3608794.html https://github.blog/2008- ...

  9. html学习第一讲(内容html常规控件的的使用)

    <html> <head> <title> 这是网页的标题</title> </head> <body> <h2>& ...

  10. cxGrid显示行号

    定义一个类: TMyCxGrid = class(TObject) class procedure DrawIndicatorCell( Sender: TcxGridTableView; ACanv ...