dotfiles/tmux/tmux.conf

15 lines
451 B
Text
Raw Normal View History

2023-09-03 00:13:21 -06:00
set -g prefix C-a
2022-05-04 12:19:18 -06:00
set -g visual-activity on
set -g status-style fg=white,bg=black
set-window-option -g window-status-bell-style fg=white,bg=red,bold
2022-05-04 12:19:18 -06:00
set-window-option -g mode-keys vi
set -g status-right "#[fg=green,bg=default]#{pane_current_path}"
set -ag status-right " #[fg=yellow,bg=default]%I:%M%p "
set -g mouse on
set -g default-terminal "screen-256color"
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R