From c55ee1aa36f9c6cfb3799066196d1bd7ffc58d5c Mon Sep 17 00:00:00 2001 From: Soispha Date: Tue, 29 Aug 2023 22:34:27 +0200 Subject: Feat(hm/conf/nvim/maps): Add keymaps for tab movement --- hm/soispha/conf/nvim/mappings/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/hm/soispha/conf/nvim/mappings/default.nix b/hm/soispha/conf/nvim/mappings/default.nix index 1d00b0a4..b73db9c9 100644 --- a/hm/soispha/conf/nvim/mappings/default.nix +++ b/hm/soispha/conf/nvim/mappings/default.nix @@ -43,6 +43,20 @@ } normal_and_insert; normalVisualOp = { + # FIXME: Add the below keymappings, when alacritty gets support for the kitty + # keyboard protocol <2023-08-29> + + # "" + "ztn" = { + action = "tabnext"; + desc = "cycle to the next tab"; + }; + # "" + "ztp" = { + action = "tabprevious"; + desc = "cycle to the previous tab"; + }; + # yank/ cut to the system clipboard "y" = { action = "\"+y"; -- cgit 1.4.1