You can change the default values of these settings for newly-created renv
projects by setting R options for renv.settings or renv.settings.<name>.
For example:
options(renv.settings = list(snapshot.type = "simple"))
options(renv.settings.snapshot.type = "simple")
If both of the renv.settings and renv.settings.<name> options are set
for a particular key, the option associated with renv.settings.<name> is
used instead. We recommend setting these in an appropriate startup profile,
e.g. ~/.Rprofile or similar.