diff options
author | Juan J. Martinez <jjm@usebox.net> | 2019-02-21 15:03:32 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:28 +0100 |
commit | 1d1e4421e7bceb9c591d53d372f39f15e7a883e9 (patch) | |
tree | aff2cdef19167c6e5c8ac692b8f4e3a31d681db6 | |
parent | b28ae48aa9d55868fce000e731a2a7b2b9b1d6c2 (diff) | |
download | dotnvim-1d1e4421e7bceb9c591d53d372f39f15e7a883e9.tar.gz dotnvim-1d1e4421e7bceb9c591d53d372f39f15e7a883e9.zip |
Better style
-rw-r--r-- | tmux.conf | 21 |
1 files changed, 20 insertions, 1 deletions
@@ -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 + |