21 lines
573 B
Plaintext
21 lines
573 B
Plaintext
set -g set-titles on
|
|
set -g set-titles-string "tmux.#S"
|
|
|
|
set-option -g status-style "bg=black,fg=white"
|
|
set-option -g window-status-current-style "fg=black,bg=red"
|
|
|
|
set-option -g pane-border-style fg=black
|
|
set-option -g pane-active-border-style fg=white
|
|
|
|
set-option -g monitor-activity off
|
|
|
|
set-option -g window-status-bell-style bold
|
|
set-option -g window-status-activity-style bold
|
|
|
|
bind r source-file ~/.config/tmux/tmux.conf
|
|
|
|
bind '"' split-window -c "#{pane_current_path}"
|
|
bind % split-window -h -c "#{pane_current_path}"
|
|
|
|
bind C-c new-window -c '#{pane_current_path}'
|