27 lines
698 B
Lua
27 lines
698 B
Lua
return {
|
|
{
|
|
'benlubas/molten-nvim',
|
|
version = '^1.0.0', -- use version <2.0.0 to avoid breaking changes
|
|
dependencies = { '3rd/image.nvim' },
|
|
build = ':UpdateRemotePlugins',
|
|
init = function()
|
|
-- these are examples, not defaults. Please see the readme
|
|
vim.g.molten_image_provider = 'image.nvim'
|
|
vim.g.molten_output_win_max_height = 20
|
|
end,
|
|
},
|
|
{
|
|
'willothy/wezterm.nvim',
|
|
cond = vim.fn.executable 'wezterm' == 1,
|
|
config = true,
|
|
},
|
|
|
|
{
|
|
'3rd/image.nvim',
|
|
build = false, -- so that it doesn't build the rock https://github.com/3rd/image.nvim/issues/91#issuecomment-2453430239
|
|
opts = {
|
|
processor = 'magick_cli',
|
|
},
|
|
},
|
|
}
|