Skip to content

Instantly share code, notes, and snippets.

@bitsandbytes
Created July 26, 2017 11:39
Show Gist options
  • Save bitsandbytes/bd3e520089b02ef0d123888984ecac4b to your computer and use it in GitHub Desktop.
Save bitsandbytes/bd3e520089b02ef0d123888984ecac4b to your computer and use it in GitHub Desktop.
# Used for my Windows 10 bash terminal
# This tmux usually has remote tmux's nested in it
# change status bar background to yellow so it doesn't confuse me with remote session's color
set -g status-bg yellow
# set current window's background to green to match remote session's color
set -g window-status-current-bg green
# turn off C-b for this Windows session, since we always remote into another tmux ssession
set-option -g prefix C-n
unbind C-b
bind-key C-n send prefix
# switch panes using Alt-arrow without prefix
bind -n S-Left previous-window
bind -n S-Right next-window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment