-
Notifications
You must be signed in to change notification settings - Fork 993
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
84 changed files
with
3,764 additions
and
2,254 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Matt's ~/.Rprofile is a link to this file at ~/GitHub/data.table/.dev/.Rprofile | ||
|
||
# options(repos = c(CRAN="http://cran.stat.ucla.edu")) | ||
# options(repos = c(CRAN=c("http://cran.stat.ucla.edu", "http://cloud.r-project.org"))) # both needed for revdep checks sometimes | ||
options(repos = c(CRAN="http://cloud.r-project.org")) | ||
|
||
options(help_type="html") | ||
options(error=quote(dump.frames())) | ||
options(width=200) | ||
options(digits.secs=3) # for POSIXct to print milliseconds | ||
suppressWarnings(RNGversion("3.5.0")) # so when I create tests in dev there isn't a mismatch when run by cc() | ||
|
||
Sys.setenv(PROJ_PATH=path.expand("~/GitHub/data.table")) | ||
source(paste0(Sys.getenv("PROJ_PATH"),"/.dev/cc.R")) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Matt's ~/.bash_aliases is a link to this file ~/GitHub/data.table/.dev/.bash_aliases | ||
|
||
# One off configure meld as difftool: | ||
# git config --global diff.tool meld | ||
# git config --global difftool.prompt false | ||
alias gd='git difftool &> /dev/null' | ||
alias gdm='git difftool master &> /dev/null' | ||
# If meld has scrolling issues, turn off GTK animation (which I don't need anyway): | ||
# https://gitlab.gnome.org/GNOME/meld/-/issues/479#note_866040 | ||
|
||
alias Rdevel='~/build/R-devel/bin/R --vanilla' | ||
alias Rdevel-strict-gcc='~/build/R-devel-strict-gcc/bin/R --vanilla' | ||
alias Rdevel-strict-clang='~/build/R-devel-strict-clang/bin/R --vanilla' | ||
alias Rdevel-valgrind='~/build/R-devel-valgrind/bin/R --vanilla' | ||
alias Rdevel32='~/build/32bit/R-devel/bin/R --vanilla' | ||
alias R310='~/build/R-3.1.0/bin/R --vanilla' | ||
alias revdepsh='cd ~/build/revdeplib/ && export TZ=UTC && export R_LIBS_SITE=none && export R_LIBS=~/build/revdeplib/ && export _R_CHECK_FORCE_SUGGESTS_=false' | ||
alias revdepr='revdepsh; R_PROFILE_USER=~/GitHub/data.table/.dev/revdep.R ~/build/R-devel/bin/R' | ||
|
||
export R_PROFILE_USER='~/.Rprofile' | ||
# there's a .Rprofile in ~/GitHub/data.table/ so Matt sets R_PROFILE_USER here to always use ~/.Rprofile | ||
# even when starting R in ~/GitHub/data.table | ||
# Matt's ~/.Rprofile as a link to ~/GitHub/data.table/.dev/.Rprofile | ||
|
Oops, something went wrong.