diff --git a/.config/nvim/lua/plugins/molten.lua b/.config/nvim/lua/plugins/molten.lua index d383f84..1216aa5 100644 --- a/.config/nvim/lua/plugins/molten.lua +++ b/.config/nvim/lua/plugins/molten.lua @@ -13,7 +13,39 @@ return { max_width_window_percentage = math.huge, window_overlap_clear_enabled = true, 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", @@ -26,36 +58,4 @@ return { 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", - 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", - } - } - } }