SoloVim/lua/plugins/jupyter.lua
Kristofers Solo f9df29cfaa Update 2025-03-30
Update 2025-03-08

Update 2025-03-09

Update 2025-03-10

Update 2025-03-12

Update 2025-03-15

Update 2025-03-16

Update 2025-03-17

Update 2025-03-18

Update 2025-03-21

Update 2025-03-23

Update 2025-03-27

Update 2025-03-28

Update 2025-03-30
2025-04-16 13:42:50 +03:00

25 lines
497 B
Lua

return {
{
"kiyoon/jupynium.nvim",
enabled = false,
dependencies = {
"rcarriga/nvim-notify", -- optional
-- "stevearc/dressing.nvim", -- optional, UI for :JupyniumKernelSelect
},
build = "uv tool install .",
event = "BufReadPre *.ju.py",
opts = {
python_host = { "uvx", "jupynium", "python" },
},
config = function(_, opts)
require("jupynium").setup(opts)
require("jupynium").get_folds()
end,
},
{
"goerz/jupytext.nvim",
version = "*",
opts = {},
},
}