about summary refs log tree commit diff stats
path: root/modules/home.legacy/conf
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-23 12:42:16 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-23 12:42:16 +0200
commit61a5e18cb8189d7fa2aab52481b801a2f5026f71 (patch)
treeffa23995eec7998920a79f35d26f12b2a13310cd /modules/home.legacy/conf
parentbuild(build): Introduce a convenient build script (diff)
downloadnixos-config-61a5e18cb8189d7fa2aab52481b801a2f5026f71.tar.gz
nixos-config-61a5e18cb8189d7fa2aab52481b801a2f5026f71.zip
fix(modules/legacy/conf/nvim/mappings): Use the better `<C-Tab>` and `<S-C-Tab>` mappings
They are now possible, as alacritty has gained support for these.
Diffstat (limited to 'modules/home.legacy/conf')
-rw-r--r--modules/home.legacy/conf/nvim/mappings/default.nix8
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";
       }