Skip to content

Commit d669d47

Browse files
Fix missing } in readme (#45)
* Fix missing } in readme * Add file path for keymaps config
1 parent 4f27bdd commit d669d47

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ return {
5656
Use the following mappings to access Kubernetes features efficiently:
5757

5858
```lua
59+
-- ~/.config/nvim/lua/config/keymaps.lua
5960
local kube_utils_mappings = {
6061
{ "<leader>k", group = "Kubernetes" }, -- Main title for all Kubernetes related commands
6162
-- Helm Commands
@@ -79,7 +80,7 @@ local kube_utils_mappings = {
7980
{ "<leader>kl", group = "Logs" },
8081
{ "<leader>klf", "<cmd>JsonFormatLogs<CR>", desc = "Format JSON" },
8182
{ "<leader>klv", "<cmd>ViewPodLogs<CR>", desc = "View Pod Logs" },
82-
83+
}
8384
-- Register the Kube Utils keybindings
8485
require('which-key').add(kube_utils_mappings)
8586
```

0 commit comments

Comments
 (0)