From c7b4cdaa1615c95469f19aed2e6257cd8c17df7a Mon Sep 17 00:00:00 2001 From: Cullum Smith Date: Fri, 28 Jun 2024 13:12:53 -0400 Subject: initial commit --- tmux/.config/tmux/tmux.conf | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tmux/.config/tmux/tmux.conf (limited to 'tmux') diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf new file mode 100644 index 0000000..3192bf2 --- /dev/null +++ b/tmux/.config/tmux/tmux.conf @@ -0,0 +1,22 @@ +set -g default-terminal "tmux-256color" +set -s escape-time 0 +setw -g mode-keys vi +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R +bind-key -T copy-mode-vi 'v' send -X begin-selection +bind-key -T copy-mode-vi 'y' send -X copy-selection + +# zenburn +setw -g clock-mode-colour colour117 +setw -g mode-style bold,fg=colour117,bg=colour238 +set -g status-style bg=colour235,fg=colour248 +setw -g window-status-current-style bold,fg=colour223,bg=colour237 +set -g message-style bold,fg=colour117,bg=colour235 + +set-option -g set-titles on +set-option -g set-titles-string "tmux [#S:#I] #T" +set-option -g status-right "#(whoami)@#h #[fg=colour187,bold]%a %Y-%m-%d %H:%M" +set -g status-right-length 50 +set -g status-left-length 20 -- cgit v1.2.3