diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2024-06-28 13:12:53 -0400 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2024-06-28 13:13:44 -0400 |
commit | c7b4cdaa1615c95469f19aed2e6257cd8c17df7a (patch) | |
tree | c53d6baca8233eda927a4a0038e6dbceab922f4f /tmux/.config | |
download | dotfiles-c7b4cdaa1615c95469f19aed2e6257cd8c17df7a.tar.gz |
initial commit
Diffstat (limited to 'tmux/.config')
-rw-r--r-- | tmux/.config/tmux/tmux.conf | 22 |
1 files changed, 22 insertions, 0 deletions
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 |