commit - e99294f404346e67d923627921c2467436c1576b
commit + f8d091be55356ecfac14d2c11673b211e5a1c7eb
blob - 3f9ac923833d106f3295abb2748dfdec7094e8a0
blob + 4d60094ad0125063e10a58033d603b795b801b11
--- .config/tmux/tmux.conf
+++ .config/tmux/tmux.conf
setw -g pane-base-index 1
# Vim motions for window control and copying
-set-window-option -g mode-keys vi # Enable vim mode
+setw -g mode-keys vi # Enable vim mode
+
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind r source-file ~/.config/tmux/tmux.conf \; display "config refresh"
# Theme
-set -g default-terminal "${TERM}"
-set-option -g terminal-overrides ",256col:RGB:XT"
-set-option -g status-style fg="#454545",bg=default # Static status bar colors
-set -g message-style "fg=#454545,bg=#f4f3ec,noreverse" # Command bar
-set -g pane-active-border-style fg="#6b7d9c" # Make the border of the active window the same color as the others
set -g status-right "" # Remove time and hostname from bar
-set-window-option -g mode-style "bg=#e0ddd0,fg=#454545" # Copy mode
+set -g status-left ""
+set -g window-status-format ' #I #W' # Make the status only i and name
+set -g window-status-current-format ' #I #W' # Make the status only i and name
+set -g default-terminal "${TERM}"
+set-option -g terminal-overrides ",256col:RGB:XT"
+# Static status bar colors
+set -g status-style "fg=default,bg=default"
+set -g window-status-style "fg=colour8,bg=default" # colour8 (gray) to make it look "faded"
+set -g window-status-current-style "fg=default,bg=default,bold"
+
+# Command bar
+set -g message-style "fg=default,bg=default,noreverse"
+
+# Make the border of the active window the same color as the others
+set -g pane-active-border-style "fg=default"
+
+# Copy mode
+setw -g mode-style "fg=default,bg=default,reverse"
+
+