mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
20 lines
477 B
Lua
20 lines
477 B
Lua
return {
|
|
"kndndrj/nvim-dbee",
|
|
dependencies = {
|
|
"MunifTanjim/nui.nvim",
|
|
},
|
|
cmd = "Dbee",
|
|
build = function()
|
|
-- Install tries to automatically detect the install method.
|
|
-- if it fails, try calling it with one of these parameters:
|
|
-- "curl", "wget", "bitsadmin", "go"
|
|
require("dbee").install("curl")
|
|
end,
|
|
opts = {
|
|
--- https://github.com/kndndrj/nvim-dbee/blob/master/lua/dbee/config.lua
|
|
},
|
|
config = function(_, opts)
|
|
require("dbee").setup(opts)
|
|
end,
|
|
}
|