diff options
Diffstat (limited to 'modules/home.legacy')
-rw-r--r-- | modules/home.legacy/conf/nvim/mappings/default.nix | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/modules/home.legacy/conf/nvim/mappings/default.nix b/modules/home.legacy/conf/nvim/mappings/default.nix index af800d22..40f1a377 100644 --- a/modules/home.legacy/conf/nvim/mappings/default.nix +++ b/modules/home.legacy/conf/nvim/mappings/default.nix @@ -40,17 +40,13 @@ options.desc = "confirm the selected item"; } - # FIXME: Add the below keymappings, when alacritty gets support for the kitty - # keyboard protocol <2023-08-29> { - # "<C-Tab>" - key = "ztn"; + key = "<C-Tab>"; action = "<cmd>tabnext<CR>"; options.desc = "cycle to the next tab"; } { - # "<S-C-Tab>" - key = "ztp"; + key = "<S-C-Tab>"; action = "<cmd>tabprevious<CR>"; options.desc = "cycle to the previous tab"; } |