diff options
| author | Dmitrii Morozov <snoopdesigns@gmail.com> | 2025-10-26 10:41:50 +0100 | 
|---|---|---|
| committer | Dmitrii Morozov <snoopdesigns@gmail.com> | 2025-10-26 10:41:50 +0100 | 
| commit | 46475452f39e3890b492bb6653e45b432067c9b3 (patch) | |
| tree | 310e8bba3efc5209e6240769778898bb445b619a /lua/config | |
| parent | 4b7a8ebba4b174960430fd0971e2bf14875cc34b (diff) | |
Add docker.nvim plugin with some keymaps
Diffstat (limited to 'lua/config')
| -rw-r--r-- | lua/config/keymaps.lua | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/config/keymaps.lua b/lua/config/keymaps.lua index 388b8ca..5411c2a 100644 --- a/lua/config/keymaps.lua +++ b/lua/config/keymaps.lua @@ -6,3 +6,11 @@ local map = LazyVim.safe_keymap_set  map("n", "<leader>gn", function()    require("neogit").open()  end, { desc = "Neogit" }) + +require("which-key").add({ +  { +    mode = "n", +    { "<leader>a", group = "various" }, +    { "<leader>ad", require("nvim-docker").containers.list_containers, desc = "Docker containers" }, +  }, +})  | 
