Files
dotfiles/.tmux.conf
2022-12-20 16:34:39 +01:00

20 lines
545 B
Bash

# Prefix
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# Mouse and colors
set -g mouse on
set -g default-terminal "screen-256color"
# pane movement
bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'"
bind-key s command-prompt -p "send pane to:" "join-pane -t '%%'"
# ssh socket, important to create symlink in ~/.ssh/rc
set -g update-environment -r
set-environment -g 'SSH_AUTH_SOCK' ~/.ssh/ssh_auth_sock
# Shorten delay for relaying Esc (to e.g. vim). Too short and PgUp will not work
set -sg escape-time 20