I installed Vundle to my /Users/name directory (ie /Users/name/.vim/bundle/Vundle.vim) a while ago, and set up a .vimrc file in my root directory which has the following:
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Bundle 'daylerees/colour-schemes', { "rtp": "vim/" }
colorscheme frontier
call vundle#end()
filetype plugin indent on
I ran :PluginInstall as suggested and it says everything has been installed, but I get a "color scheme frontier not found" error everytime I open vim.
This is as far as I've done, am I missing any steps?
:syntax on- jgriego