1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-18 18:07:45 +01:00

nvim: cleaned up molten setup

This commit is contained in:
tiyn 2025-03-01 05:16:00 +01:00
parent 3ec55d1bfe
commit 3446c0fc74

View File

@ -13,27 +13,8 @@ return {
max_width_window_percentage = math.huge, max_width_window_percentage = math.huge,
window_overlap_clear_enabled = true, window_overlap_clear_enabled = true,
window_overlap_clear_ft_ignore = { "cmp_menu", "cmp_docs", "" }, window_overlap_clear_ft_ignore = { "cmp_menu", "cmp_docs", "" },
}
}, },
}, },
build = ":UpdateRemotePlugins",
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,
},
{
"GCBallesteros/jupytext.nvim",
opts = {
style = "markdown",
output_extension = "md",
force_ft = "markdown"
}
},
{ {
"quarto-dev/quarto-nvim", "quarto-dev/quarto-nvim",
dependencies = { dependencies = {
@ -55,7 +36,26 @@ return {
codeRunner = { codeRunner = {
enabled = true, enabled = true,
default_method = "molten", default_method = "molten",
} },
} },
} },
{
"GCBallesteros/jupytext.nvim",
opts = {
style = "markdown",
output_extension = "md",
force_ft = "markdown",
},
},
},
build = ":UpdateRemotePlugins",
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,
},
} }