Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've pulled the starter-kit from https://github.com/technomancy/emacs-starter-kit, and it was installed in ~/.emacs.d/elpa. Following the instruction of the starter-kit.el, I put my user-specific customization in ~/.emacs.d/$USER.el:

(require 'color-theme-solarized)
(color-theme-solarized-dark)
(require 'auto-complete)
(global-auto-complete-mode)

But when I started emacs, it says

File error: Cannot open load file, color-theme-solarized

I checked the load-path variable and found that the path of color-theme-solarized wasn't in it. So I add this before "require" it:

 (add-to-list 'load-path "~/.emacs.d/elpa/color-theme-solarized-20120301)

However the error still occurs.Then I referred to elpa's wiki and it says that all the packages are initialized after the init.el is loaded. Then I read the starter-kit.el and found that the $USER.el is added to after-init-hook, which means that the error shouldn't occur since the $USER.el is loaded at the end of initializing. I desperately move all my customization to the end of init.el, to my surprise, it just work fine. It seems that the init.el is loaded at last rather than at first. How could I make my customization work except writing it in the init.el? I don't want to make the init.el too long.

ps: I've put (require 'package) and (package-initialize) at the beginning of init.el and it doesn't make a difference.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.