diff options
-rw-r--r-- | tmux/.tmux.conf | 1 | ||||
-rw-r--r-- | tmux/.tmux/aws.conf | 4 | ||||
-rw-r--r-- | tmux/.tmux/common.conf | 5 | ||||
-rw-r--r-- | tmux/.tmux/default.conf | 5 | ||||
-rw-r--r-- | tmux/.tmux/gcloud.conf | 4 | ||||
-rw-r--r-- | tmux/.tmux/uberspace.conf | 4 |
6 files changed, 13 insertions, 10 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 04aee71..1346e02 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -2,4 +2,3 @@ source-file ~/.tmux/common.conf set -g status-bg colour13 set -g status-fg colour235 - diff --git a/tmux/.tmux/aws.conf b/tmux/.tmux/aws.conf index 4ea910f..db3c740 100644 --- a/tmux/.tmux/aws.conf +++ b/tmux/.tmux/aws.conf @@ -1,5 +1,7 @@ source-file ~/.tmux/common.conf +unbind C-a +set -g prefix C-b + set -g status-bg yellow set -g status-fg black - diff --git a/tmux/.tmux/common.conf b/tmux/.tmux/common.conf index 5de73ad..72ea65b 100644 --- a/tmux/.tmux/common.conf +++ b/tmux/.tmux/common.conf @@ -7,10 +7,6 @@ bind l select-pane -R bind-key -r C-h select-window -t :- bind-key -r C-l select-window -t :+ -# act like GNU screen -unbind C-b -set -g prefix C-a - # look good set -g default-terminal "screen-256color" @@ -31,4 +27,3 @@ set -g set-titles-string '#T -- #W' set-window-option -g automatic-rename on set-option -g status-interval 1 set-option -g history-limit 10000 - diff --git a/tmux/.tmux/default.conf b/tmux/.tmux/default.conf index 1abb019..7025433 100644 --- a/tmux/.tmux/default.conf +++ b/tmux/.tmux/default.conf @@ -1,5 +1,8 @@ source-file ~/.tmux/common.conf +# act like GNU screen +unbind C-b +set -g prefix C-a + set -g status-bg white set -g status-fg black - diff --git a/tmux/.tmux/gcloud.conf b/tmux/.tmux/gcloud.conf index 7270636..7d1ebb2 100644 --- a/tmux/.tmux/gcloud.conf +++ b/tmux/.tmux/gcloud.conf @@ -1,5 +1,7 @@ source-file ~/.tmux/common.conf +unbind C-a +set -g prefix C-b + set -g status-bg blue set -g status-fg white - diff --git a/tmux/.tmux/uberspace.conf b/tmux/.tmux/uberspace.conf index e5b3cd5..0f76c2a 100644 --- a/tmux/.tmux/uberspace.conf +++ b/tmux/.tmux/uberspace.conf @@ -1,5 +1,7 @@ source-file ~/.tmux/common.conf +unbind C-a +set -g prefix C-b + set -g status-bg green set -g status-fg black - |