From 13ef1cb8bbeacb61eae286fdacca91d15609654d Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Wed, 26 Oct 2016 19:29:41 +0200 Subject: Manage Rprofile Fix the code to decide if Nvim-R will work. This is not tested with vim 8 though. --- Rprofile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Rprofile (limited to 'Rprofile') diff --git a/Rprofile b/Rprofile new file mode 100644 index 0000000..5b77822 --- /dev/null +++ b/Rprofile @@ -0,0 +1,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 +} -- cgit v1.2.1