Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install vim plugin(EasyMotion) in Linux?

Tags:

linux

vim

vi

How to install vim plugin(EasyMotion) in Linux? And the plugin is here:

http://www.vim.org/scripts/script.php?script_id=3526

like image 438
Phoenix Avatar asked Nov 24 '11 07:11

Phoenix


1 Answers

Give Vundle a shot. It's simpler than Pathogen in my experience and certainly simpler than installing the plugin manually.

Installing a plugin with Vundle is as simple as adding the plugin name to your .vimrc:

Bundle 'Lokaltog/vim-easymotion'

Then you would run :BundleInstall and you're done!

Take a look at the Vundle Github page to see how to set it up. It only takes a minute, and it will save you plenty of headache down the road when you inevitably need to remove or update plugins.

like image 72
Marco Avatar answered Nov 12 '22 03:11

Marco