-
Notifications
You must be signed in to change notification settings - Fork 1
Neovim
isetfiretotherain edited this page Jan 12, 2019
·
1 revision
Neovim is using vim-plug
as the package manager with only the essential plugins.
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.
The standing issues are being documented on the issues page.