How do I get my changes to take effect right at the time emacs loads ?
Here is the reply I had sent to Philipp by mistake instead of replying
to the mailing list.
I tried to use the second method, but the overriden changes don't take
effect automatically on starting emacs.
But if I open .emacs file and evaluate the expression, then the
changes are seen.
Here is the code I added
#+begin_src elisp
;; in .emacs file
(setq user-emacs-dir (expand-file-name "emacs/site/common"))
(load
(setq custom-file
(expand-file-name "theme-custom.el" user-emacs-dir))
'noerror)
#+end_src
#+begin_src elisp
;; in theme-custom.el
(set-face-background 'flymake-errline "DarkRed")
(set-face-background 'flymake-warnline "DarkBlue")
#+end_src
Am I missing anything ?
Sorry if this is a dumb question to ask but my I emacs lisp knowledge
is very little.
Thanks for helping out.
--
Vineet Naik