blob: 5b778227a6aaa94b73b112624fc21504676fb09a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
options(pdfviewer="okular")
options(browser="firefox")
# R package repositories
local({
r <- getOption("repos")
r["CRAN"] <- "https://cran.rstudio.com"
#r["CRAN"] <- "http://cran.at.r-project.org" # if https does not work
#r["eddelbuettel"] <- "https://eddelbuettel.github.io/drat"
#r["ghrr"] <- "https://ghrr.github.io/drat"
options(repos = r)
})
if (interactive()) {
library(colorout)
library(setwidth)
# vimcom will generally only be installed on boxes where this is necessary
if (requireNamespace("vimcom")) options(vimcom.verbose = 1)
# However, vimcom does not get in the way of Nvim-R if it is loaded
}
|