Better Fuzzy Search with Ctrl-P in Vim January 27th 2015
For those familiar with Sublime Text and have since moved to vim you probably miss the Cmd+P feature that allowed you to find a file in your working directory through a fuzzy match. The two main plugin contenders for fuzzy file finding in vim would arguably be Ctrl-P and Command-T. Personally I perfer Ctrl-P because it …
Using pathogen to install .vim plugins February 2nd 2013
Using pathogen to install .vim plugins.
cd {git repository directory}
git submodule add {git path of plugin} {path in git repository where it will be installed}
git submodule init
git submodule update
For example to install supertab
cd ~/.dotfiles
git submodule add git://github.com/ervandew/supertab.git …
Installing the Vim Plugin Command-T on Ubuntu/Linux Mint January 26th 2013
I won’t cover aquiring the Command-T source files. I recommend the pathogen method though. In order to install Command-T on Vim, it is necessary to have vim compiled with ruby. This is easily accomplished by installing vim-nox.
sudo apt-get install vim-nox
After installing vim you can try to make the extension by …