How can I activate Vim color schemes in OS X's Terminal?
I'm working with the Vim 7.2 that comes with Mac OS 10.6.1 (Leopard), using the Mac's "Terminal" app. I'd like to use a fancy color scheme. I did this...
:syntax on
Then this...
:colorscheme slate
:colorscheme elflord
:colorscheme desert
etc...
Syntax highlighting is working, but I'm finding that regardless of the scheme I choose, the only colors displayed are the basic Red, Blue, Cyan, Gray, etc.
Is there a way to get the Terminal app to display a larger collection of colors to allow some more subtle schemes?
Solution 1:
Create a .vimrc
file on your home ~/
folder and then edit it with vim ~/.vimrc
. You can try adding syntax on
inside ~/.vimrc file. The following command does that:
echo "syntax on" >> ~/.vimrc
It will highlight your code syntax on vim
Solution 2:
You need to create file ~/.vimrc and add syntax on in that file
vi ~/.vimrc
syntax on
save the file and run your vim