spf13-vim – The Ultimate Distribution for Vim Editor
spf13-vim is a cross platform and highly customizable assortment of vim plugins and various resources forVim, GVim and MacVim.
It works in Linux, Windows and MacOS X plus other Unix-like systems, it adheres to the traditional feel of vim as it offers present-day features such as a plugin management system, auto-complete, tags and many more.
Suggested Read: Learn Vi/Vim Editor – BEGINNER’S GUIDE
The notable plugins provided under spf13-vim include:
Vundle Plugin Manager for VIM
Vundle is an outstanding system built based on the exact principles as Pathogen, however with an integrated plugin management system that uses Git and Github.
Vundle File Manager for Vim
NERDTree Explorer Plugin for Vim
NERDTree is a file explorer plugin that offers project drawer functionality to a user’s vim editing.
NerdTree Explorer Plugin for Vim
ctrlp File Finder for Vim
Ctrlp is a replacement of the Command-T plugin with a 100% vim plugin. It supports an intuitive and quick method to load files from the file system (with regex and fuzzy find), open buffers, and recently used files as well.
Ctrlp File Finder for Vim
Surround Handles all the ‘”[{}]”‘ etc
Surround is a tool for handling pairs of “surroundings.” Examples of surroundings consists of parentheses, quotes, and HTML tags. These surroundings are closely related to what Vim refers to as text-objects.
Surround Deals Pairs of Surroundings in Vim
NERDCommenter – Comment Code in Vim
NERDCommenter is a plugin that allows a user to deal with code comments, irrespective of filetype.
NerdCommenter for Commenting in Code for Vim
Syntastic Integrated Syntax Checking for Vim
Syntastic is a syntax checking plugin that executes buffers via external syntax checkers while they are saved and opened. In case any syntax errors are detected, a notification is sent to the user, therefore, the user does not have to compile their code or execute their script to find them.
Syntastic Syntax Checking for Vim
Numbers.vim – Add Line Numbers for Vim
Numbers.vim is a plugin interchanges between relative numbering (normal mode) and absolute numbering (insert mode) depending on the mode a user is in.
This enables a user to effortlessly move code around with the relative line numbers when in normal mode. Again presenting correct line numbers when writing code in insert mode.
Numbers.vim Add Line Numbers to Vim
NeoComplCache Autocomplete++ Plugin for Vim
NeoComplCache is a powerful and brilliant autocomplete plugin with extra support for snippets. It enables simulations autocompletion from the dictionary, buffer, omni-complete and snippets.
Neocomplcache Autocomplete++ Plugin for Vim
Fugitive Add Git Integration for Vim
Fugitive adds persistent Git support to Git directories in vim.
Fugitive Adds Git Integration For Vim
PIV Adds PHP Editing for Vim
PIV offers modern PHP Integration for Vim with better support for PHP 5.3+ including latest syntax, functions, better fold support, and so on.
PIV Adds PHP Editing for Vim
Tabularize Align Everything in Vim
Tabularize enables a user to align statements on their equal signs and several other characters.
Tabularize Align Code in Vim
Tagbar Adds Tag generation and Navigation in Vim
Tagbar requires exuberant-ctags and will automatically create tags for a user’s open files. It as well presents a panel to easily navigate through tags.
Tagbar Adds Tag Generation and Navigation in Vim
EasyMotion Jump Anywhere in Vim
EasyMotion offers an interactive way to use motions in Vim.
EasyMotion Jump Anywhere in Vim
Furthermore, spf13-vim:
- comes with a number of additional syntaxes such as Markdown, Twig and Git commits.
- includes solarized and spf13-vim color pack ( ir_black, molokal, peaksea).
- contains a complete collection of snippets for use with snipmate or NeoComplCache.
How to Install spf13-vim in Linux Systems
Before you proceed to install spf13-vim, make sure you have Git and cURL installed on your system, otherwise, run the correct commands below as per your distribution to install them:
$ sudo apt-get install git curl [On Debian based systems]
$ yum install git curl [On CentOS based systems]
Once both the packages has been installed, you can go further to install spf13-vim using an automatic installation script in your system and importantly backup your current Vim configuration files.
Therefore, type (or copy and paste) the command below in your terminal to run the automatic installer:
$ curl http://j.mp/spf13-vim3 -L -o - | sh
Note: If you already have spf13-vim installed, you can update to the latest version as follows:
$ cd $HOME/.spf13-vim/
$ git pull
$ vim +BundleInstall! +BundleClean +q
How To Configure and Use spf13-vim in Linux
Once you have installed it, close you current terminal and open another terminal session. spf13-vim comes with a highly optimized .vimrc configuration file that is exceptionally well organized and folds in sections, where each section is labeled and each option is commented.
The .vimrc configuration file installed by spf13-vim helps to deal with common downsides of vanilla vimsuch as using a single configuration file across all operating systems, corrects common typos (:W, :Q plus many more), configures included plugins, setup the interface to use vim’s features (including omnicomplete, line numbers, syntax highlighting, a proper ruler and status line etc) coupled with many more.
$ vi ~/.vimrc
spf13-vim Configuration
You can add any local customizations in the files ~/.vimrc.local and ~/gvimrc.local, in case the files already exist or else create them yourself.
Take for instance, you can override the default color schemes and use peaksea as follows:
$ echo colorscheme peaksea >> ~/.vimrc.local
The ~/.vimrc.bundles file imports the various plugins of spf13. However, to add (or remove individual bundles) your own bundles, create the file ~/.vimrc.bundles.local.
For example, the command below will add an extra bundle:
$ echo Bundle \'spf13/vim-colors\' >> ~/.vimrc.bundles.local
Below are screenshots showing spf13-vim working with different color schemes:


If you feel that spf13-vim not so useful, you can remove it completely using following commands.
$ cd ~/.spf13-vim-3/
$ ./uninstall.sh
For more information on how to use the various plugins, perform other customizations and lots more, visithttp://vim.spf13.com/.
In this article, we talked about spf13-vim, a powerful collection of useful vim plugins and resources to enhance Vim, GVim and MacVim text editors.
Remember to use the feedback section below to ask any questions or offer us your thoughts about the article. You can as well give us information concerning any similar programs out there to extend Vim core functionalities or enhance its performance.
spf13-vim – The Ultimate Distribution for Vim Editor的更多相关文章
- vim与程序员 vi/vim 的使用
vim与程序员 所有的 Unix Like 系统都会内建 vi 文书编辑器,其他的文书编辑器则不一定会存在. 但是目前我们使用比较多的是 vim 编辑器. vim 具有程序编辑的能力,可以主动的以 ...
- vim插件的安装方式 -- vim注释插件和doxygen函数注释生成插件-ctrlp插件-tabular等号对齐 插件
使用unzip的时候 指定 -d选项, 是说明解压到的 目标地址. 这个参数还是比较方便的, 比直接unzip到当前目录, 然后在去拷贝到目标目录, 然后再删除当前目录中的解压文件夹, 方便多了. 使 ...
- CentOS 7 上安装vim 解決 centos -bash: vim: command not found
用CentOS上使用vim竟然用不了,报错没有该命令 centos -bash: vim: command not found 那么如何安裝 vim 呢? ---------------------- ...
- 5.5 进入编辑模式 5.6 vim命令模式 5.7 vim实践
5.5 进入编辑模式 5.6 vim命令模式 5.7 vim实践 进入编辑模式 小写i在当前字符前插入 大写I 在光标所在行的行首插入 大写O 在光标上面一行插入编辑 小写o在光标下面一行插入编辑 小 ...
- vim介绍/vim颜色显示和移动光标/ vim一般模式下移动光标/ vim一般模式下复制、剪切和粘贴
5.1 vim介绍 5.2 vim颜色显示和移动光标 5.3 vim一般模式下移动光标 5.4 vim一般模式下复制.剪切和粘贴 vim 是vi的升级版本 vim 带有颜色显示 安装vim : y ...
- Vim技能修炼教程(12) - Vim的脚本语言支持
Vim的脚本语言支持 本节开始,我们正式接触vimscript这门古老的脚本语言. 首先要说明,vim支持的扩展语言很多,比如python, python3, ruby, lua,tcl等常见脚本语言 ...
- 【转】一个 Vim 重度用户总结的 vim 超全指南
[转]一个 Vim 重度用户总结的 vim 超全指南 我本人是 Vim 的重度使用者,就因为喜欢上这种双手不离键盘就可以操控一切的feel,Vim 可以让我对文本的操作更加精准.高效. 对于未使用过 ...
- 『学了就忘』vim编辑器基础 — 94、vim编辑器介绍
目录 1.vim编辑器简介 2.vim的工作模式 (1)命令模式 (2)输入模式 (3)最后行模式(末行模式) 1.vim编辑器简介 vim是一个全屏幕纯文本(绘个表格或者插个图片就不要想了)编辑器, ...
- 『学了就忘』vim编辑器基础 — 97、vim使用技巧
目录 1.在vim中导入其他文件内容或命令结果 (1)导入其他文件内容 (2)在vim中执行系统命令 (3)导入命令结果 2.设定快捷键 3.字符替换 4.多文件打开 vim使用技巧,就是vim编辑器 ...
随机推荐
- Spring AOP 实现原理
什么是AOP AOP(Aspect-OrientedProgramming,面向方面编程),可以说是OOP(Object-Oriented Programing,面向对象编程)的补充和完善.OOP引入 ...
- contentWindow 和contentDocument区别 及iframe访问
a>contentWindow 兼容各个浏览器,可取得子窗口的 window 对象. b>contentDocument Firefox 支持,> ie8 的ie支持.可取得子窗口的 ...
- AS:加载新版本的SWF文件。
方案一: 文件名+版本号,区别对待不同的版本控制,有设定值后会加上_v_x的后缀名.如:加载主文件 main.swf, 被命名为:Main_v_60.swf . 方案二: loader.load(ne ...
- WSB备份到远程共享文件夹的限制
WSB备份存储类型: 远程共享文件夹: 可以将一次性(临时)备份和计划备份存储在远程共享文件夹上.(将计划备份存储在远程共享文件夹上的功能是 Windows Server 2008 R2 的新增功能. ...
- ProbS CF matlab源代码(二分系统)(原创作品,转载注明出处,谢谢!)
%ProbS clear all;%% 数据读入与预处理 data = load('E:\network_papers\u1.base');test = load('E:\network_papers ...
- Codeforces Round #309 (Div. 2) C. Kyoya and Colored Balls 排列组合
C. Kyoya and Colored Balls Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contes ...
- [NOIP 2014复习]第三章:动态规划——NOIP历届真题回想
背包型动态规划 1.Wikioi 1047 邮票面值设计 题目描写叙述 Description 给定一个信封,最多仅仅同意粘贴N张邮票,计算在给定K(N+K≤40)种邮票的情况下(假定全部的邮票数量都 ...
- Android (cocos2dx 网络访问)访问权限设置
Android开发应用程序时,如果应用程序需要访问网络权限,需要在 AndroidManifest.xml 中加入以下代码: 同样的如果用到其它的权限,也需要作出声明,部分权限列表如下: androi ...
- “惊群”,看看nginx是怎么解决它的
在说nginx前,先来看看什么是“惊群”?简单说来,多线程/多进程(linux下线程进程也没多大区别)等待同一个socket事件,当这个事件发生时,这些线程/进程被同时唤醒,就是惊群.可以想见,效率很 ...
- [转]使用 PIVOT 和 UNPIVOT
可以使用 PIVOT 和 UNPIVOT 关系运算符将表值表达式更改为另一个表.PIVOT 通过将表达式某一列中的唯一值转换为输出中的多个列来旋转表值表达式,并在必要时对最终输出中所需的任何其余列值执 ...