Skip to content

Instantly share code, notes, and snippets.

@mengwangk
Created June 21, 2023 13:13
Show Gist options
  • Save mengwangk/689a73f46951bd3efbcd69cba84e3893 to your computer and use it in GitHub Desktop.
Save mengwangk/689a73f46951bd3efbcd69cba84e3893 to your computer and use it in GitHub Desktop.
Neovim PDE - Data Science and Blockchain (Part 2)
if not require("config").pde.r then
return {}
end
return {
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, { "r" })
end,
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
r_language_server = {
flags = { debounce_text_changes = 150 },
},
},
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment