You can pass the --no-save command line argument when you start R, or you can use the Defaults package:
require(Defaults)
setDefaults(q, save="no")
useDefaults(q)
Put the above code in your .Rprofile so it will be run on startup for every session. One benefit to using the Defaults solution is that it seems to circumvent the "suicide shortcut" issue Spacedman mentioned.
As @John D. Cook mentioned in the comments, adding the above code directly to your .Rprofile does not work because .Rprofile is executed at a point in the startup process where only the base package is available.
Putting this in my .Rprofile achieves the desired effect on 64-bit Ubuntu running R-2.15.1 (though it should work on any OS and most R versions):
# Set hook to be run when Defaults is attached
setHook(packageEvent("Defaults", "attach"),
function(...) { setDefaults(q, save="no"); useDefaults(q) })
# add Defaults to the default packages loaded on startup
old <- getOption("defaultPackages");
options(defaultPackages = c(old, "Defaults"))
R --vanilla– aL3xa Feb 14 '11 at 19:46q()function in .Rprofie: stackoverflow.com/a/13043239/180892 – Jeromy Anglim Oct 24 '12 at 6:15