sjl / badwolf

A Vim color scheme.
http://stevelosh.com/projects/badwolf/
MIT License
1.25k stars 226 forks source link

function name in base color in Clojure #34

Closed narocath closed 7 years ago

narocath commented 7 years ago

The function name after defn also after def.. is white. How can I change it?

sjl commented 7 years ago

Find out what your syntax file tags the name as, then add it with your desired color here:

https://github.com/sjl/badwolf/blob/master/colors/badwolf.vim#L433

Unfortunately it looks like the Clojure syntax file just tags this as clojureSymbol like all other normal symbols, so changing it would also change every other symbol. If you want to highlight the function names differently you'll need to edit the syntax file to recognize them first.