Mac – Where does MacVim keep its themes

macvim

I'm using MacVim and I am attempting to change the default theme. I have the following in my .vimrc file (and in .gvimrc as well):

 colorscheme macvim

But the theme remains unchanged. What am I doing wrong?

The file is read in without errors but the scheme doesn't change. Also, if I download alternate themes, where do they go?

Best Answer

This is what I have in my ~/.vimrc

if has("gui_running")
  syntax on
  set hlsearch
  colorscheme macvim
  set bs=2
  set ai
  set ruler
endif