when I do as you suggested. I get File error: Cannot open load file, color-theme On Mon, Jul 27, 2009 at 3:04 AM, Drew Adams wrote: > > (add-to-list 'load-path ("~/.emacs.d/plugins/color-theme-6.6.0")) > > Invalid function: ~/.emacs.d/plugins/color-theme-6.6.0 > > You need to quote both args to `add-to-list': > > (add-to-list 'load-path '("~/.emacs.d/plugins/color-theme-6.6.0")) > ^ > quote > > Without the quote, (foo) is interpreted as a call of function `foo' - in > this > case, a call of ~/.emacs.d/plugins/color-theme-6.6.0 (which is not a valid > function). > > >