aboutsummaryrefslogtreecommitdiff
path: root/tmux.conf
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2019-02-21 15:03:32 +0000
committerJuan J. Martinez <jjm@usebox.net>2022-05-29 22:57:28 +0100
commit1d1e4421e7bceb9c591d53d372f39f15e7a883e9 (patch)
treeaff2cdef19167c6e5c8ac692b8f4e3a31d681db6 /tmux.conf
parentb28ae48aa9d55868fce000e731a2a7b2b9b1d6c2 (diff)
downloaddotnvim-1d1e4421e7bceb9c591d53d372f39f15e7a883e9.tar.gz
dotnvim-1d1e4421e7bceb9c591d53d372f39f15e7a883e9.zip
Better style
Diffstat (limited to 'tmux.conf')
-rw-r--r--tmux.conf21
1 files changed, 20 insertions, 1 deletions
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
+