We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f27bdd commit d669d47Copy full SHA for d669d47
1 file changed
README.md
@@ -56,6 +56,7 @@ return {
56
Use the following mappings to access Kubernetes features efficiently:
57
58
```lua
59
+-- ~/.config/nvim/lua/config/keymaps.lua
60
local kube_utils_mappings = {
61
{ "<leader>k", group = "Kubernetes" }, -- Main title for all Kubernetes related commands
62
-- Helm Commands
@@ -79,7 +80,7 @@ local kube_utils_mappings = {
79
80
{ "<leader>kl", group = "Logs" },
81
{ "<leader>klf", "<cmd>JsonFormatLogs<CR>", desc = "Format JSON" },
82
{ "<leader>klv", "<cmd>ViewPodLogs<CR>", desc = "View Pod Logs" },
-
83
+}
84
-- Register the Kube Utils keybindings
85
require('which-key').add(kube_utils_mappings)
86
```
0 commit comments