mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
feat(molten.lua): add molten-nvim plugin configuration to enhance Neovim functionality
This commit is contained in:
17
lua/absolute/plugins/molten.lua
Normal file
17
lua/absolute/plugins/molten.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
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()
|
||||
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,
|
||||
config = function()
|
||||
require("absolute.after.molten")
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user