Skip to main content

Timeline for Installing Emacs color theme

Current License: CC BY-SA 3.0

6 events
when toggle format what by license comment
Oct 7, 2014 at 15:53 vote accept Mertcan Ekiz
Oct 7, 2014 at 15:37 answer added lawlist timeline score: 4
Oct 7, 2014 at 12:24 comment added Mertcan Ekiz Using load-file did the trick for me, thanks a lot!
Oct 7, 2014 at 2:21 comment added lawlist For example, you could use (load-file "~/.emacs.d/empty-void.el") (load-file "~/.emacs.d/color-theme.el") and then not even worry about the load-path. I've seen experienced Emacs users recommend setting up sub-directories in the .emacs.d folder, e.g., ~/.emacs.d/lisp -- and you can add that sub-directory to your load-path and put your *.el files inside it and then use something like (require '...) assuming of course that there is a (provide '....) statement at the bottom of each *.el file that you are seeking to require.
Oct 7, 2014 at 2:12 comment added lawlist In general, the .emacs.d root directory is not automatically included within the load-path. A path to an *.el file is not usually used in conjunction with load-path, but instead is normally used in conjunction with load-file -- without using add-to-list. So those are likely your first two problems right off the bat.
Oct 7, 2014 at 0:02 history asked Mertcan Ekiz CC BY-SA 3.0