Skip to content

Instantly share code, notes, and snippets.

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