1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +00:00

Add microbin

This commit is contained in:
RGBCube 2024-01-12 16:13:46 +03:00
parent 1e90277f19
commit e216f6b16b
No known key found for this signature in database
6 changed files with 53 additions and 4 deletions

View file

@ -12,7 +12,7 @@
clearDefaultKeybindings = true;
keybindings = (lib.mapAttrs' (name: value: lib.nameValuePair "ctrl+shift+${name}" value) {
keybindings = (lib.mapAttrs' (name: lib.nameValuePair "ctrl+shift+${name}") {
c = "copy_to_clipboard";
v = "paste_from_clipboard";
@ -50,7 +50,7 @@
"physical:eight" = "goto_tab:8";
"physical:nine" = "goto_tab:9";
"physical:zero" = "goto_tab:10";
}) // (lib.mapAttrs' (name: value: lib.nameValuePair "ctrl+${name}" value) {
}) // (lib.mapAttrs' (name: lib.nameValuePair "ctrl+${name}") {
"physical:tab" = "next_tab";
"shift+physical:tab" = "previous_tab";
});