Added database client plugin for NVIM
This commit is contained in:
@@ -40,6 +40,7 @@
|
||||
"nvim-cmp": { "branch": "main", "commit": "29fb4854573355792df9e156cb779f0d31308796" },
|
||||
"nvim-dap": { "branch": "master", "commit": "7ff6936010b7222fea2caea0f67ed77f1b7c60dd" },
|
||||
"nvim-dap-ui": { "branch": "master", "commit": "ffa89839f97bad360e78428d5c740fdad9a0ff02" },
|
||||
"nvim-dbee": { "branch": "master", "commit": "21d2cc0844a16262bb6ea93ab3d0a0f20bd87853" },
|
||||
"nvim-java": { "branch": "main", "commit": "905013eb83c58bda992724b3ecbe20f60b58513f" },
|
||||
"nvim-java-core": { "branch": "main", "commit": "5b03dca22fee76524a89e1c2dc1d73a9f0b1a3bb" },
|
||||
"nvim-java-dap": { "branch": "main", "commit": "55f239532f7a3789d21ea68d1e795abc77484974" },
|
||||
|
||||
12
.config/nvim/lua/custom/plugins/nvim-dbee.lua
Normal file
12
.config/nvim/lua/custom/plugins/nvim-dbee.lua
Normal 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 = {},
|
||||
}
|
||||
Reference in New Issue
Block a user