-
-
Notifications
You must be signed in to change notification settings - Fork 2k
ruby
junegunn edited this page Sep 18, 2014
·
8 revisions
Mavericks already ships with Ruby-enabled Vim. 😃
If you wish to install a newer version (recommended), check out RVM and Homebrew.
# Assuming that you already installed RVM and Homebrew
rvm install ruby
rvm use ruby
brew install vim
sudo apt-get install vim-nox
sudo pacman -S gvim
You can build the recent version of Vim from source.
pacman -S ruby vim
Check out the relevant section from of my article, Installing Vim with Ruby support. It's a little outdated, but you'll get the idea.
However, parallel installer on Windows GVim is not stable and I don't recommend using it. You might want to add the following code snippet to your .vimrc:
if has('win32') || has('win64')
let g:plug_threads = 1
endif