diff --git a/home/modules/programs/my-kitty/linux.nix b/home/modules/programs/my-kitty/linux.nix index 8090c46..fe745be 100644 --- a/home/modules/programs/my-kitty/linux.nix +++ b/home/modules/programs/my-kitty/linux.nix @@ -7,5 +7,10 @@ with lib; programs.kitty = mkIf (cfg.enable && pkgs.stdenv.isLinux) { # set the shell settings.shell = "${config.programs.fish.package}/bin/fish"; + + keybindings = { + "ctrl+shift+n" = "new_os_window_with_cwd"; + "ctrl+shift+enter" = "new_window_with_cwd"; + }; }; }