mirror of
https://github.com/tiyn/dotfiles.git
synced 2026-03-28 10:24:47 +01:00
21 lines
531 B
Lua
21 lines
531 B
Lua
return {
|
|
-- jupyter notebook support
|
|
"benlubas/molten-nvim",
|
|
build = ":UpdateRemotePlugins",
|
|
version = "^1.0.0",
|
|
dependencies = {
|
|
"3rd/image.nvim",
|
|
"quarto-dev/quarto-nvim",
|
|
"GCBallesteros/jupytext.nvim",
|
|
},
|
|
lazy = false,
|
|
init = function()
|
|
vim.g.molten_auto_open_output = false
|
|
vim.g.molten_wrap_output = true
|
|
vim.g.molten_virt_text_output = true
|
|
vim.g.molten_virt_lines_off_by_1 = true
|
|
vim.g.molten_image_provider = "image.nvim"
|
|
vim.g.molten_output_win_max_height = 20
|
|
end,
|
|
}
|