Introduce a new function in a package?
~/.Rprofile
You could also write in .Rprofile soemthing like this:
for (x in dir("Mylibrary",full.names=T,recursive=T))
source(x)
where "Mylibrary" is a directory which
contains your functions without making a package.
Josef Eschgf?ller