1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-18 09:57:46 +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,7 +13,39 @@ 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", "" },
} },
},
{
"quarto-dev/quarto-nvim",
dependencies = {
"jmbuhr/otter.nvim",
"nvim-treesitter/nvim-treesitter",
},
opts = {
lspFeatures = {
languages = { "python" },
chunks = "all",
diagnostics = {
enabled = true,
triggers = { "BufWritePost" },
},
completion = {
enabled = true,
},
},
codeRunner = {
enabled = true,
default_method = "molten",
},
},
},
{
"GCBallesteros/jupytext.nvim",
opts = {
style = "markdown",
output_extension = "md",
force_ft = "markdown",
},
}, },
}, },
build = ":UpdateRemotePlugins", build = ":UpdateRemotePlugins",
@ -26,36 +58,4 @@ return {
vim.g.molten_output_win_max_height = 20 vim.g.molten_output_win_max_height = 20
end, end,
}, },
{
"GCBallesteros/jupytext.nvim",
opts = {
style = "markdown",
output_extension = "md",
force_ft = "markdown"
}
},
{
"quarto-dev/quarto-nvim",
dependencies = {
"jmbuhr/otter.nvim",
"nvim-treesitter/nvim-treesitter",
},
opts = {
lspFeatures = {
languages = { "python" },
chunks = "all",
diagnostics = {
enabled = true,
triggers = { "BufWritePost" },
},
completion = {
enabled = true,
},
},
codeRunner = {
enabled = true,
default_method = "molten",
}
}
}
} }