Skip to content

Instantly share code, notes, and snippets.

@djnavarro
Created July 22, 2019 01:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djnavarro/556507d27c50216f4f39b6a3d5d3e138 to your computer and use it in GitHub Desktop.
Save djnavarro/556507d27c50216f4f39b6a3d5d3e138 to your computer and use it in GitHub Desktop.
my r profile
if(interactive()) {
# packages helpful for development
suppressMessages({
require(devtools)
require(usethis)
require(testthat)
require(roxygen2)
require(git2r)
require(pkgdown)
require(workbch)
})
# git credentials
options(usethis.protocol = "ssh")
usethis::use_git_credentials(git2r::cred_token())
# name
options(usethis.full_name = "Danielle Navarro")
# project file
options(workbch.home = "~/GitHub/utilities/projects/")
# bias against "scientific" notation
options(scipen = 4)
# hey gurl
cat("Hey gurl!", intToUtf8(127752), "\n")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment