You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
727 B
Plaintext
10 lines
727 B
Plaintext
# This file is supposed to be sourced in a tmux session that's contained within another one, for example when ssh'ing to
|
|
# a different machine. See the main .tmux.conf for when I include this.
|
|
|
|
# Change the status bar colors to indicate this session has recognized that it's a nested one.
|
|
set -g status-left "#{?client_prefix,#[fg=magenta]#[bg=black]#[fg=brightwhite]#[bg=magenta]#S#[fg=magenta]#[bg=black],#[fg=brightblack]#[bg=black]#[fg=white]#[bg=brightblack]#S#[fg=brightblack]#[bg=black]} "
|
|
|
|
# Set a different prefix key. Normally I use ^Z, nested sessions use ^B. This has the additional advantage of not
|
|
# breaking my muscle memory when I ssh to a machine without my personal tmux config.
|
|
set -g prefix C-B
|