I can't Install Vundle
I've followed the instructions on GitHub;
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
and that's all... Here's the tree of cd .vim
├── bundle
│ └── Vundle.vim
│ ├── autoload
│ │ ├── vundle
│ │ │ ├── config.vim
│ │ │ ├── installer.vim
│ │ │ └── scripts.vim
│ │ └── vundle.vim
│ ├── changelog.md
│ ├── CONTRIBUTING.md
│ ├── doc
│ │ └── vundle.txt
│ ├── LICENSE-MIT.txt
│ ├── README.md
│ └── test
│ ├── files
│ │ └── test.erl
│ ├── minirc.vim
│ └── vimrc
└── $MYVIMRC
7 directories, 13 files
and in .vimrc
set nocompatible " be iMproved
filetype off
in order to edit .vimrc I used in vim:
:e $MYVIMRC
Can you help get Vundle installed?