I'm trying to change the color scheme on my vim editor.
I put this on the .vimrc file
set t_Co=256
colorscheme molokai
I have the molokai.vim file on .vim/colors
And when I try to load the .vimrc file with the source
command (on Mac OS X) I get this error
.vimrc:2: command not found: colorscheme
Could you help me?
set t_Co=256
syntax enable
colorscheme molokai
– Hollenbeck