Remove nvim-cmp plugin configuration

When opening an R or Quarto file, I would see this message:

> "Please, uninstall cmp-r. It's no longer used."

So I have removed the optional nvim-cmp configuration for R.

This is my first time contributing a change, so I hope this is correct
This commit is contained in:
Alexander Weber 2025-12-08 10:20:11 -08:00 committed by GitHub
parent c64a61734f
commit 869616dc9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,15 +47,6 @@ return {
require("r.pdf.generic").open = vim.ui.open
end,
},
{
"hrsh7th/nvim-cmp",
optional = true,
dependencies = { "R-nvim/cmp-r" },
opts = function(_, opts)
opts.sources = opts.sources or {}
table.insert(opts.sources, { name = "cmp_r" })
end,
},
{
"nvim-treesitter/nvim-treesitter",
opts = { ensure_installed = { "r", "rnoweb" } },