first i do this in a terminal: $ git clone git://github.com/altercation/solarized.git
, that creates a directory in my home called "solarized", after that i add this 2 lines to my init.el
(add-to-list 'load-path "~/.emacs.d/emacs-color-theme-solarized")
(load-theme 'color-theme-solarized.el t)
so i created a directory emacs-color-theme-solarized in ".emacs.d" and i put there the code of the color-theme.., but when i "byte-compile and load"my init.el this message came in the mini-buffer: load-theme: Unable to find theme file for `color-theme-solarized.el'
what i did wrong?