Added database client plugin for NVIM

This commit is contained in:
Kyren223
2024-10-26 15:15:47 +03:00
parent 201e113a65
commit 45735e75df
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
return {
'kndndrj/nvim-dbee',
dependencies = { 'MunifTanjim/nui.nvim' },
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()
end,
cmd = 'Dbee',
opts = {},
}