Created
July 22, 2019 01:49
-
-
Save djnavarro/556507d27c50216f4f39b6a3d5d3e138 to your computer and use it in GitHub Desktop.
my r profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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