发现了一个很棒的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. Android 色彩设计理念

    色彩 色彩从当代建筑.路标.人行横道以及运动场馆中获取灵感.由此引发出大胆的颜色表达激活了色彩,与单调乏味的周边环境形成鲜明的对照. 强调大胆的阴影和高光.引出意想不到且充满活力的颜色. 色样 – 0 ...

  2. lenovo E431 win8系统 安装win7

    事由:新买的lenovo e431 原装win8系统.win8系统本来就不好用,又傻傻的装了win10的预览版,丑死不说,还各种驱动不兼容,每次开机都提示不兼容——本人有点洁癖,见不得这种,本想把不兼 ...

  3. uva 696 - How Many Knights

    题目链接:uva 696 - How Many Knights 题目大意:给出一个n * m的网格,计算最多可以放置几个国际象棋中的骑士. 解题思路:分成三类来讨论: 1)min(n, m) == 1 ...

  4. 【教程】HTML5+JavaScript编写flappy bird

         作者: 风小锐      新浪微博ID:永远de风小锐      QQ:547953539      转载请注明出处 PS:新修复了两个bug,已下载代码的同学请查看一下 大学立即要毕业了. ...

  5. vue 常见报错问题

    情况一:http://eslint.org/docs/rules/no-tabs  Unexpected tab character 解决方案:缩进是4个空格,而不是tab,设置indent 情况二 ...

  6. STL之lambda表达式

    一.简介 我们可以向一个算法传递任何类别的可调用对象.对于一个对象或一个表达式,如果可以对其使用调用运算符,则称它为可调用的.即,如果e是一个可调用的表达式,则我们可以编写代码e(args),其中ar ...

  7. MVC3中给Html.TextAreaFor设置默认值(初始值)

    <div class="editor-field"> @Html.TextAreaFor(model => model.Comments) @Html.Valid ...

  8. java 实现文本格式转换

    代码如下,不太规范,仅作学习用 import java.io.*; public class CharSetTest { public static void main(String[] args) ...

  9. HDUOJ--1058HangOver

    HangOver Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Su ...

  10. HDUOJ -----1686

    Oulipo Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Subm ...