From 1d1e4421e7bceb9c591d53d372f39f15e7a883e9 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Thu, 21 Feb 2019 15:03:32 +0000 Subject: Better style --- tmux.conf | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'tmux.conf') diff --git a/tmux.conf b/tmux.conf index 38e3822..31c09f4 100644 --- a/tmux.conf +++ b/tmux.conf @@ -25,4 +25,23 @@ setw -g mode-keys vi set -g history-limit 10000 # avoid delay and ESC behaving weird -set -sg escape-time 0 +set -g escape-time 0 + +# Status bar with load and time +set -g status-bg '#4e4e4e' +set -g status-fg '#ffffff' +set -g status-left-length 60 +set -g status-left '[#S] #[fg=#80ff80]#H#[default] ' +set -g status-right '%a %H:%M %Y-%m-%d' +set -g window-status-format '#I: #W#F' +set -g window-status-current-format ' #I: #W#F ' +setw -g window-status-current-bg '#80ff80' +setw -g window-status-current-fg '#000000' + +# Pane border colors +set -g pane-active-border-fg '#40a040' +set -g pane-border-fg '#555555' + +# Bind to reload config +bind r source-file ~/.tmux.conf + -- cgit v1.2.3