As I never found (or perhaps I never search for it enough) a good article about how to manage the init.m files, I ended up developing my own "standard", but I wonder how bad I did it.
For example, my usual init.m is stored in C:\Documents and Settings\All Users\Application Data\Mathematica\Kernel\init.m (Windows) and I edit it using a text editor.
As I don't want the definitions to go into the Global context, the content is something like:
(** User Mathematica initialization file **)
Begin["MyInitContext`"];
Cl:=Clear["Global`*"];
(* Other definitions in this Context *)
End[]; (* End Context *)
$ContextPath = Prepend[$ContextPath,"MyInitContext`"];
I don't load packages from the init.m, because I want strict control over what I load, so I only define here shortcuts to utility functions I use on a daily basis and some options.
So: Any references to good practices? Better ways to achieve this kind of behavior? Any caveats?
init.min FrontEnd directory caused all of my FrontEnd options to be forgotten in Mathematica 8.0, I suppose it shouldn't be touched – Yaroslav Bulatov Mar 14 '11 at 0:53init.monce, but it was for setting up a package (older forms ofLevelSchemehad a non-std load procedure). So, best practices ... I'm curious to see how people use it. – rcollyer Mar 14 '11 at 1:53