史上最强的vimrc文件http://amix.dk/vim/vimrc.html, 据说有800行,还是作者精简后的结果.
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Maintainer: amix the lucky stiff
" http://amix.dk - amix@amix.dk
"
" Version: 3.6 - 25/08/10 14:40:30
"
" Blog_post: 发布的博客地址
" http://amix.dk/blog/post/19486#The-ultimate-vim-configuration-vimrc
" Syntax_highlighted: 带有语法高亮的html版本
" http://amix.dk/vim/vimrc.html
" Raw_version: txt原始版本
" http://amix.dk/vim/vimrc.txt
"
" How_to_Install_on_Unix: 如何在Unix系统上安装
" $ mkdir ~/.vim_runtime
" $ svn co svn://orangoo.com/vim ~/.vim_runtime
" $ cat ~/.vim_runtime/install.sh
" $ sh ~/.vim_runtime/install.sh <system>
" <sytem> can be `mac`, `linux` or `windows`
"
" How_to_Upgrade:如何更新升级
" $ svn update ~/.vim_runtime
"
" Sections:目录/章节
" -> General 整体布局设置
" -> VIM user interface 用户界面设置
" -> Colors and Fonts 颜色和字体
" -> Files and backups 文件和备份
" -> Text, tab and indent related 文本缩进设置
" -> Visual mode related 视图模式相关设置
" -> Command mode related 命令模式相关设置
" -> Moving around, tabs and buffers 移动,制表符和缓冲区
" -> Statusline 状态栏
" -> Parenthesis/bracket expanding 括号扩展
" -> General Abbrevs 一般缩写
" -> Editing mappings 编辑映射
"
" -> Cope 帮助/应付
" -> Minibuffer plugin 迷你缓冲区 插件
" -> Omni complete functions
" -> Python section Python设置
" -> JavaScript section JavaScript设置
"
"
" Plugins_Included: 用到的插件
" > minibufexpl.vim - http://www.vim.org/scripts/script.php?script_id=159
" Makes it easy to get an overview of buffers:
" info -> :e ~/.vim_runtime/plugin/minibufexpl.vim
"
" > bufexplorer - http://www.vim.org/scripts/script.php?script_id=42
" Makes it easy to switch between buffers:
" info -> :help bufExplorer
"
" > yankring.vim - http://www.vim.org/scripts/script.php?script_id=1234
" Emacs's killring, useful when using the clipboard:
" info -> :help yankring
"
" > surround.vim - http://www.vim.org/scripts/script.php?script_id=1697
" Makes it easy to work with surrounding text:
" info -> :help surround
"
" > snipMate.vim - http://www.vim.org/scripts/script.php?script_id=2540
" Snippets for many languages (similar to TextMate's):
" info -> :help snipMate
"
" > mru.vim - http://www.vim.org/scripts/script.php?script_id=521
" Plugin to manage Most Recently Used (MRU) files:管理最近使用的文件的一种插件
" info -> :e ~/.vim_runtime/plugin/mru.vim
"
" > Command-T - http://www.vim.org/scripts/script.php?script_id=3025
" Command-T plug-in provides an extremely fast, intuitive mechanism for opening filesa:
" info -> :help CommandT
" screencast and web-help -> http://amix.dk/blog/post/19501
"
"
" Revisions: 修订
" > 3.6: Added lots of stuff (colors, Command-T, Vim 7.3 persistent undo etc.)
"
">