diff --git a/modules/cli/zsh/default.nix b/modules/cli/zsh/default.nix index 9a8e470..7b07e2e 100644 --- a/modules/cli/zsh/default.nix +++ b/modules/cli/zsh/default.nix @@ -62,6 +62,7 @@ ke = "k edit"; kl = "k logs"; kp = "k patch"; + kc = "k create"; kr = "k rollout"; krr = "k rollout restart"; kpf = "k port-forward"; diff --git a/nvim/lua/plugins/motions.lua b/nvim/lua/plugins/motions.lua index b449fc2..5bcecd1 100644 --- a/nvim/lua/plugins/motions.lua +++ b/nvim/lua/plugins/motions.lua @@ -11,10 +11,10 @@ return { "vim-wordmotion", keys = { -- This overrides the default ge & gw but i never used them. - { "gw", "WordMotion_w", desc = "Next small world", mode = { "n", "x", "o" } }, - { "ge", "WordMotion_e", desc = "Next end of small world", mode = { "n", "x", "o" } }, - { "gb", "WordMotion_b", desc = "Previous small world", mode = { "n", "x", "o" } }, - { "igw", "WordMotion_iw", desc = "inner small word", mode = { "x", "o" } }, + { "gw", "WordMotion_w", desc = "Next small world", mode = { "n", "x", "o" } }, + { "ge", "WordMotion_e", desc = "Next end of small world", mode = { "n", "x", "o" } }, + { "gb", "WordMotion_b", desc = "Previous small world", mode = { "n", "x", "o" } }, + { "igw", "WordMotion_iw", desc = "inner small word", mode = { "x", "o" } }, { "agw", "WordMotion_aw", desc = "a small word (with white-space)", mode = { "x", "o" } }, }, before = function() @@ -28,9 +28,9 @@ return { "leap.nvim", keys = { { "s", "(leap-forward-till)", mode = { "n", "x", }, desc = "Leap forward to" }, - { "S", "(leap-backward)", mode = { "n", "x", }, desc = "Leap backward to" }, - { "z", "(leap-forward-till)", mode = "o", desc = "Leap forward to" }, - { "Z", "(leap-backward)", mode = "o", desc = "Leap backward to" }, + { "S", "(leap-backward)", mode = { "n", "x", }, desc = "Leap backward to" }, + { "z", "(leap-forward-till)", mode = "o", desc = "Leap forward to" }, + { "Z", "(leap-backward)", mode = "o", desc = "Leap backward to" }, }, },