up vote 1 down vote favorite
share [g+] share [fb]

I am using MacVim to convert cs files to HTML. The convert function works fine. However, I don't like the default syntax highlighting for cs.

I understand that the cs syntax file in at /Applications/Vim/MacVim.app/Contents/Resources/vim/runtime/syntax/cs.vim, Maintainer by Anduin Withers. Not sure if there is any other way to substitute this one with a better syntax highlight file or update it with a a newer version?

link|improve this question

66% accept rate
feedback

1 Answer

up vote 6 down vote accepted

You are probably looking for colorscheme files. Syntax files define which part of text (source code) is what, for example it identifies keywords, function names and variables and so on. Color scheme defines what color should each component get.

To change color try

:colo <name of colorscheme>

To cycle through existing schemes use tab:

:colo <TAB>

You can get new colorschemes (choose the ones you like and save as plain ascii files) and store them in your $HOME/.vim/colors directory which is searched by vim before the standard one that you mentioned above.

link|improve this answer
You can also do :color <ctrl-d> to list all installed color schemes – Sam Jul 10 '09 at 7:44
sort of. The color schema lists only limited options. On the one hand, I cannot find out one similar as VS default syntax color. On the other hand, I am looking for improved cs.vim to provide similar color markings as VS. – David.Chu.ca Jul 11 '09 at 5:18
OK. I found your "get new colorschemes" has a lots of great color schemas. Thanks! – David.Chu.ca Jul 11 '09 at 5:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.