Must Have Vim Plugins
abhiphull
Posted on June 14, 2020
In this post, I will talk about top vim plugins which everyone should have.
Nerdtree Nerdtree is a file explorer for the vim editor. Once you have nerdtree installed, it is easy to navigate through sub directories and files.
Ctrlp Ctrlp is a fuzzy file finder. Ctrlp is a great utility to find files in a current directory and sub directories. You can use find files based on fuzzy logic or vim's regular expressions. With Ctrlp, you don't have to get out of vim. Ctrlp also keeps track of previously opened files.
Vim-surround Surround.vim is all about "surroundings": parentheses, brackets, quotes, XML tags, and more. The plugin provides mappings to easily delete, change and add such surroundings in pairs.
Vim-foldsearch This plugin is must have plugin if you deal with large files. It makes searching through files very effective. When you search a word or pattern using vim-foldsearch, it folds the lines which don't have pattern matched and only show the lines with patterns.
Vim-visual-star-search This is small plugin but very useful. This allows you to select some text using Vim's visual mode and then hit *
and # to search for it elsewhere in the file. For example, hit V, select a strange sequence of characters like "$! $!", and hit star. You'll find all other runs of "$! $!" in the file.
Vim-colors-solarized Great plugin to select from pre-configured color schemes.
Vim rename multiple Files There are multiple plugins to do this. Please checkout the above post to know more about these plugins.
Posted on June 14, 2020
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.