From 893e7430c4f6b6f31e84fe70d608266f3892a05b Mon Sep 17 00:00:00 2001 From: Nicole Tietz-Sokolskaya Date: Mon, 28 May 2018 17:27:35 -0400 Subject: [PATCH] Add user, host, and session names to tmux config --- tmux/.tmux.conf | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index b2b0326..8aebd26 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -6,8 +6,8 @@ set -sg escape-time 0 set -g default-terminal "screen-256color" # window status -setw -g window-status-format "#[fg=colour7]#[bg=black] --#[fg=color7]#[bg=black] #I #W " -setw -g window-status-current-format "#[bg=colour7]#[fg=black] --#[bg=color7]#[fg=black] #I #W " +setw -g window-status-format "#[bg=colour241,fg=colour233] #I #W " +setw -g window-status-current-format "#[bg=colour245,fg=colour233] #I #W " # The statusbar set -g status-interval 2 @@ -15,18 +15,12 @@ set -g status-position bottom set -g status-bg colour234 set -g status-fg colour137 set -g status-attr dim -set -g status-left '' +set -g status-left '#[fg=colour245] #(whoami)@#H > #S ' set -g status-right '#[fg=colour233,bg=colour241,bold] %m/%d #[fg=colour233,bg=colour245,bold] %I:%M ' set -g status-right-length 50 -set -g status-left-length 20 +set -g status-left-length k0 set -g clock-mode-style 12 -# Vim style pane selection -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R - # Use Alt-vim keys without prefix key to switch panes bind -n M-h select-pane -L bind -n M-j select-pane -D