library(jeksterslabRterm)
dir <- Sys.getenv("HOME")
GITHUB_PAT <- "123456"

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
)

.Rprofile

term_rprofile(
  dir = dir,
  overwrite = 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
)

Xterm

term_xterm(
  overwrite = TRUE,
  dark = TRUE
)

Vim

term_vim(
  dir = dir,
  overwrite = TRUE,
  plugins = TRUE,
  dark = TRUE,
  colorscheme = "default"
)


jeksterslabds/jeksterslabRterm documentation built on July 13, 2020, 11:43 p.m.