-- Keymaps are automatically loaded on the VeryLazy event -- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua -- Add any additional keymaps here local map = LazyVim.safe_keymap_set -- Fix scrolling problem with which-key vim.keymap.set("n", "", "zz", { desc = "Jump half page down", buffer = true }) map("n", "gn", function() require("neogit").open() end, { desc = "Neogit" }) require("which-key").add({ { mode = "n", { "a", group = "various", icon = " " }, { "ad", require("nvim-docker").containers.list_containers, desc = "Docker containers" }, }, })