Add in Dadbod and Lazydocker
Needs to be isntalled locally still
This commit is contained in:
parent
e9dda24ae9
commit
3e9b2534d5
13
init.lua
13
init.lua
|
|
@ -271,7 +271,17 @@ require('lazy').setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'crnvl96/lazydocker.nvim',
|
||||||
|
event = 'VeryLazy',
|
||||||
|
opts = {}, -- automatically calls `require("lazydocker").setup()`
|
||||||
|
dependencies = {
|
||||||
|
'MunifTanjim/nui.nvim',
|
||||||
|
},
|
||||||
|
keys = {
|
||||||
|
{ '<leader>ld', '<cmd>LazyDocker<cr>', desc = 'Open lazy docker' },
|
||||||
|
},
|
||||||
|
},
|
||||||
-- Here is a more advanced example where we pass configuration
|
-- Here is a more advanced example where we pass configuration
|
||||||
-- options to `gitsigns.nvim`. This is equivalent to the following Lua:
|
-- options to `gitsigns.nvim`. This is equivalent to the following Lua:
|
||||||
-- require('gitsigns').setup({ ... })
|
-- require('gitsigns').setup({ ... })
|
||||||
|
|
@ -1188,6 +1198,7 @@ require('lazy').setup({
|
||||||
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
|
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
|
||||||
--
|
--
|
||||||
require 'kickstart.plugins.lazygit',
|
require 'kickstart.plugins.lazygit',
|
||||||
|
require 'kickstart.plugins.dadbod',
|
||||||
require 'kickstart.plugins.debug',
|
require 'kickstart.plugins.debug',
|
||||||
require 'kickstart.plugins.indent_line',
|
require 'kickstart.plugins.indent_line',
|
||||||
-- require 'kickstart.plugins.lint',
|
-- require 'kickstart.plugins.lint',
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
return {
|
||||||
|
'kristijanhusak/vim-dadbod-ui',
|
||||||
|
dependencies = {
|
||||||
|
{ 'tpope/vim-dadbod', lazy = true },
|
||||||
|
{ 'kristijanhusak/vim-dadbod-completion', ft = { 'sql', 'mysql', 'plsql' }, lazy = true },
|
||||||
|
},
|
||||||
|
cmd = {
|
||||||
|
'DBUI',
|
||||||
|
'DBUIToggle',
|
||||||
|
'DBUIAddConnection',
|
||||||
|
'DBUIFindBuffer',
|
||||||
|
},
|
||||||
|
init = function()
|
||||||
|
-- Your DBUI configuration
|
||||||
|
vim.g.db_ui_use_nerd_fonts = 1
|
||||||
|
end,
|
||||||
|
keys = {
|
||||||
|
{ '<leader>lb', '<cmd>DBUI<cr>', desc = 'Open Dadbod UI' },
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue