Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions modules/terminal.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
keybindings = {
"cmd+left" = "send_text all \\x01";
"cmd+right" = "send_text all \\x05";
# New tabs/windows inherit the active tab's working directory
# (relies on shell integration's OSC 7 cwd reporting below).
"cmd+t" = "new_tab_with_cwd";
"cmd+enter" = "new_window_with_cwd";
"cmd+n" = "new_os_window_with_cwd";
};
shellIntegration.enableZshIntegration = true;
};
Expand Down