1
0
This commit is contained in:
Steven Hobs
2025-08-20 12:08:09 +08:00
commit ad8ef460d6
7 changed files with 133 additions and 0 deletions

8
.Rprofile Normal file
View File

@@ -0,0 +1,8 @@
# R 配置
options("repos" = c(CRAN = "https://mirrors.cernet.edu.cn/CRAN/")) # 包的镜像源
if (Sys.getenv("VSCODE_DEBUG_SESSION") == "1") { # Debugger关联
Sys.setenv(TERM_PROGRAM = "vscode")
source(file.path(Sys.getenv(if (.Platform$OS.type == "windows") "USERPROFILE" else "HOME"), ".vscode-R", "init.R"))
}