diff options
| author | bard <[email protected]> | 2024-04-15 06:24:14 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-04-15 06:24:14 -0400 |
| commit | 168120d4068eff9816c11f0503738c12861821ae (patch) | |
| tree | 635e839eeca920432fcaa8417b282e074e84a4c2 /tmux/.config | |
initial commit
Diffstat (limited to 'tmux/.config')
| -rw-r--r-- | tmux/.config/tmux/tmux.conf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf new file mode 100644 index 0000000..32dbab6 --- /dev/null +++ b/tmux/.config/tmux/tmux.conf @@ -0,0 +1,38 @@ +set-option -g prefix C-t +set -g mouse on +# don't do anything when a 'bell' rings +set -g visual-activity off +set -g visual-bell off +set -g visual-silence off +setw -g monitor-activity off +set -g bell-action none + +# clock mode +setw -g clock-mode-colour colour7 + +# copy mode +setw -g mode-style 'fg=colour7 bg=colour2 bold' + +# pane borders +set -g pane-border-style 'fg=colour7' +set -g pane-active-border-style 'fg=colour3' + +# statusbar +set -g status-position bottom +set -g status-justify left +set -g status-style 'fg=colour7' +set -g status-left '' +set -g status-right '%Y-%m-%d %H:%M ' +set -g status-right-length 50 +set -g status-left-length 10 + +setw -g window-status-current-style 'fg=colour0 bg=colour7 bold' +setw -g window-status-current-format ' #I #W #F ' + +setw -g window-status-style 'fg=colour7 dim' +setw -g window-status-format ' #I #[fg=colour7]#W #[fg=colour7]#F ' + +setw -g window-status-bell-style 'fg=colour7 bg=colour7 bold' + +# messages +set -g message-style 'fg=colour2 bg=colour0 bold'
\ No newline at end of file |
