Compare commits

..

2 Commits

Author SHA1 Message Date
Noah Masur
44f769f5ed
add more gh shortcuts to zellij 2025-06-07 16:38:58 -04:00
Noah Masur
6e29c95506
add mpv back to darwin 2025-06-07 16:38:23 -04:00
2 changed files with 21 additions and 0 deletions

View File

@ -149,6 +149,26 @@ in
# start_suspended = true;
};
};
"bind \"Alt Shift l\"" = {
Run = {
_args = [
(lib.getExe pkgs.gh)
"run"
"view"
"--log"
];
};
};
"bind \"Alt Shift f\"" = {
Run = {
_args = [
(lib.getExe pkgs.gh)
"run"
"view"
"--log-failed"
];
};
};
"bind \"Super Shift ]\"" = {
GoToNextTab = { };
};

View File

@ -19,6 +19,7 @@ in
fonts.enable = lib.mkDefault true;
services.hammerspoon.enable = lib.mkDefault true;
programs.nixpkgs-darwin.enable = lib.mkDefault true;
programs.mpv.enable = lib.mkDefault true;
};
home.homeDirectory = lib.mkForce "/Users/${config.home.username}";