summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2023-08-27 14:29:23 -0500
committerToby Vincent <tobyv@tobyvin.dev>2023-08-27 14:29:23 -0500
commitcbbddc89513f5a7fc4330211fadafae7c9142a67 (patch)
treea6abba81fa5b9c348075d05765166b8e1fa58e0a
parent4ffdb5f371d450308239149c49fa7071489df187 (diff)
fix(tmux): improve theme
-rw-r--r--tmux/.config/tmux/tmux.conf10
1 files changed, 6 insertions, 4 deletions
diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf
index acf60d0..350dc95 100644
--- a/tmux/.config/tmux/tmux.conf
+++ b/tmux/.config/tmux/tmux.conf
@@ -15,10 +15,8 @@ set-option -g detach-on-destroy off
set-option -g status-keys vi
set-option -g status-interval 1
-set-option -g status-left "#{session_path} "
-set-option -g status-left-length 30
-set-option -g status-right "#[#{status-style}]%Y-%m-%d %H:%M:%S #[fg=default,bg=default]#{host_short}"
-set-option -g status-right-style "#{?client_prefix,#{window-status-bell-style},#{status-style}}"
+set-option -g status-left "#[#{?client_prefix,#{window-status-bell-style},#{status-left-style}}][#S:#{host_short}]#[#{status-style}] "
+set-option -g status-right "%Y-%m-%d %H:%M:%S"
bind-key -N "Switch last session" A switch-client -l
bind-key -N "Clock" T clock-mode
@@ -51,6 +49,10 @@ bind-key '*' if-shell 'tmux swapw -d -t :=8' '' 'movew -t :=8'
bind-key '(' if-shell 'tmux swapw -d -t :=9' '' 'movew -t :=9'
bind-key ')' if-shell 'tmux swapw -d -t :=0' '' 'movew -t :=0'
+set-option -g @colors-base16 'gruvbox-dark-hard'
+
+source-file -q $BASE16_CONFIG_PATH/tmux.base16.conf
+
set-option -g @plugin 'tmux-plugins/tpm'
set-option -g @plugin 'tmux-plugins/tmux-sensible'
set-option -g @plugin 'tmux-plugins/tmux-pain-control'