Update 2024-08-21

This commit is contained in:
Kristofers Solo
2024-08-21 22:56:15 +03:00
parent 49ced08d78
commit 89989c222f
25 changed files with 271 additions and 142 deletions

19
lua/plugins/dbee.lua Normal file
View File

@@ -0,0 +1,19 @@
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,
}