- See here: http://vim.1045645.n5.nabble.com/MacVim-and-PATH-td3388705.html#a3392363
- Do this:
sudo mv /etc/zshenv /etc/zprofile
- Put this in your
~/.zprofile
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
:!ruby -v
should show you the global ruby version you set withrbenv global
- Change your
~/.zprofile
to look like this:
export PATH="$HOME/.rbenv/bin:/usr/local/bin:$PATH"
eval "$(rbenv init -)"
:!ctags --version
should now show you the version you installed with homebrew
still don't work for me
I have done as this gist tell me to do, but in Macvim, when I type :!ctags --version or :!ruby -v , I got wrong version. sad..