When I load my .emacs
, although the color theme, twilight, loads up fine, but it shows me this error message:
Symbol's function definition is void: color-theme-twilight
In my .emacs
I have put the following lines to add the color theme:
(require 'color-theme)
(setq color-theme-is-global t)
(color-theme-initialize)
(color-theme-twilight)
The color-theme-twilight.el
file lives in ~/.emacs.d/themes/
I looked at this question. But the solution there is a correction to a typo. But I am not making that typo. I am on emacs24. What is the problem?
load-path
. There's more info here about when this sort of an error comes up. – Proclivity