I use powerline and have installed it using Pathogen (
http://www.vim.org/scripts/script.php?script_id=2332).
In short, just do this:
1. Download pathogen.vim and put it into your ~/.vim/autoload directory.
2. Add the line
Code:
call pathogen#infect()
to your ~/.vimrc.
3. cd into ~/.vim/bundle (create it if it doesn't exist) and clone the Power-line github repo to it:
Code:
mkdir -p ~/.vim/bundle
cd ~/.vim/bundle
git clone git://github.com/Lokaltog/vim-powerline.git
Works for me without any problem. As a nice side-effect, you now have Pathogen installed, which makes installing and managing your plugins really easy.