Install Vundle Mac



NameVersionDownload
exVim Mainv0.5.0zip, tar.gz
exVim Fullv0.5.0zip, tar.gz
exVim Windows installerv0.5.0installer
  1. Install Bundle Macbook
  2. Install Vundle Vim Mac
  3. Install Bundle Mac Download
  4. Macvim Install Vundle

NOTE:

PluginInstall is a command of Vundle plugin, you have to install and configure it first. You have call vundle#begin commented out. Uncomment it and edit the path. – phd Apr 8 '18 at 21:10. Spf13-vim uses the Vundle plugin management system to have a well organized vim directory (Similar to mac's app folders). Vundle also ensures that the latest versions of your plugins are installed and makes it easy to keep them up to date; install Vundle #vim. GitHub Gist: instantly share code, notes, and snippets.

Setup (Vim) Make sure you're running vim 7.4 or later. On Mac I found it easier to run 'brew install vim' and replace the system vim by creating a symbolic link at /usr/bin/vim OR you can use MacVim. Both should work now.

The exVim Main package is the stable version of exvim/main project in Github. Use it if you wish to install through Vundle or Pathgeon.

The exVim Full package includes all the plugins pre-installed in exVim. It is a green package, use this if you wish to try or preview exVim and don't want it replace youroriginal Vim.

The exVim Windows installer includes the full package of exVim plus GnuWin32 tools usedin exVim. This helps Windows user easily install everything and can getting start quickly.

Check our changelog.
More details, read the Install documentation.

Windows

NameDownloadOfficial Page
gVim 7.4ziphttp://www.vim.org/download.php
cTags 5.8ziphttp://ctags.sourceforge.net/
cscope 15.7aziphttp://cscope.sourceforge.net/
sed 4.2.1ziphttp://gnuwin32.sourceforge.net/packages/sed.htm
gawk 3.1.6ziphttp://gnuwin32.sourceforge.net/packages/gawk.htm
id-utils 4.0.2ziphttp://gnuwin32.sourceforge.net/packages/id-utils.htm
graphvizdownload-pagehttp://www.graphviz.org

You also need to install and setup Git to make exVim working correctly. More details about Gitsetup, read Vundle for Windows

Mac

NameDownloadInstall Command
MacVim 7.4tbzbrew install macvim --with-cscope --with-lua --HEAD
cTags-brew install ctags
cscope-brew install cscope
gawk-brew install gawk
id-utils-brew install idutils
sed-Already installed in Mac
graphviz-brew install graphviz

brew is the Homebrew install command, more details about Homebrew.

Powerline Fonts

NameDownload
DejaVu Sans Monozip

You can also select other powerline-font in here

Install Bundle Macbook

If you think non of the fonts satisfy you, you can patch your favorite font by fontpatching

OSX Terminal Colors Solarized

Mac
NameDownload
OSX Terminal Colors Solarizedzip
InstallInstall vundle mac

This is my customized solarized color for osx terminal

Question or issue on macOS:

I am trying to install Vundle on my Macvim. I followed the following link to get Vundle. I also configured my .vimrc file. But when I try PluginInstall, I get the following error.

Install Vundle Mac

My .vimrc contains the following:

My vim directory:

I also checked this stackoverflow post. But it didn’t solve my problem. Why does it throw such an error and how can I find what exactly is my issue.

How to solve this problem?

Solution no. 1:

I had to install Vundle into Plugin directory instead of Bundle. It solved the issue.

Solution no. 2:

You can check the output of :version

Note which vimrc file you are using, say you are configuring $HOME/vimrc, but vim is reading $HOME/.vimrc (without dot at filename)

Install

This happened to me.

Install Vundle Vim Mac

Hope this will help you.

Solution no. 3:

As mentioned here, I needed to set up Vundle like this:

Afterwards, the error got resolved. By the way, I am on a FreeBSD 10.3-STABLE machine not macOS

Solution no. 4:

This could be as a result of end of line characters, CRLF for windows and LF for linux.
Change your line endings.
if on unix in your ~/.vimrc file :

Install Bundle Mac Download

:set fileformat=unix
:w

Macvim Install Vundle

Hope this helps!