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

@@ -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" },

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 = {},
}