Sync latest status

This commit is contained in:
2026-07-05 11:09:35 +03:00
parent 9cc41c7d6e
commit 3fe6ca3d6b
2 changed files with 33 additions and 19 deletions
+14
View File
@@ -0,0 +1,14 @@
return {
{
"LazyVim/LazyVim",
opts = function(_, opts)
-- Check if lazydocker is installed on the system
if vim.fn.executable("lazydocker") == 1 then
-- Add custom keymap to LazyVim
vim.keymap.set("n", "<leader>kd", function()
LazyVim.terminal({ "lazydocker" }, { esc_esc = false, ctrl_hjkl = false })
end, { desc = "LazyDocker" })
end
end,
},
}