Git Config
term_git_config(
name = "Ivan Jacob Agaloos Pesigan",
email = "email@email.com",
editor = "vim",
ignore = c(
"*~",
".*.swp",
".DS_Store",
".~lock.*"
),
msg = paste0(
"Subject line (try to keep under 50 characters)",
"\n\n",
"Multi-line description of commit,",
"\n",
"feel free to be detailed.",
"\n\n",
"[Ticket: X]"
),
global = TRUE
)
.Renviron
term_renviron(
dir = dir,
overwrite = TRUE,
GITHUB_PAT = GITHUB_PAT,
libpath = NULL
)
Bash dot files
term_bash(
dir = dir,
overwrite = TRUE,
vars = c(GITHUB_PAT = GITHUB_PAT)
)
Conda
term_conda(
dir = dir,
overwrite = TRUE,
conda_path = NULL,
auto_activate_base = FALSE
)
Vim
term_vim(
dir = dir,
overwrite = TRUE,
plugins = TRUE,
dark = TRUE,
colorscheme = "default"
)