I am trying to install a custom colorscheme for vim
First I created the folders required
mkdir -p ~/.vim/colors
cp wombat.vim ~/.vim/colors “wombat.vim being a colorscheme
Then I added
colorscheme wombat.vim
to .vimrc
Yet when I try load a vim file after the changes, I get message “E185: Cannot find color scheme wombat.vim”.
you need to place your colorscheme files in:
~/.vim/colorsor:
$HOME/.vim/colorsfor Vim to find them.
That’s on OS X & Linux. I don’t have a Windows box to test against.