Skip to content
isetfiretotherain edited this page Jan 12, 2019 · 1 revision

Neovim is using vim-plug as the package manager with only the essential plugins.

Nvim-R

One critical addition that I made is to make it an IDE for R, substituting RStudio. You can add the Nvim-R as a plugin but you have to make some modifications in R to make it run, they are listed in the links. Set a global repository in a ~/.Rprofile with the following code:

## Set CRAN mirror:
local({
  r <- getOption("repos")
  r["CRAN"] <- "https://cloud.r-project.org/"
  options(repos = r)
})

For more information go to Kade Killary, Nvim-R and the ArchWiki page.

Clone this wiki locally