18 lines
490 B
Bash
18 lines
490 B
Bash
set -g mouse on
|
|
set -g base-index 1
|
|
set -g pane-base-index 1
|
|
set-option -g status-position top
|
|
set -g allow-passthrough on
|
|
|
|
# Right side: disable (remove everything)
|
|
set -g status-right ""
|
|
|
|
# Window list style
|
|
set -g status-style "bg=#3c3836"
|
|
set -g window-status-style "bg=#3c3836"
|
|
set -g window-status-current-style "bg=#3c3836,bold"
|
|
|
|
bind c new-window -c "#{pane_current_path}"
|
|
bind % split-window -h -c "#{pane_current_path}"
|
|
bind '"' split-window -v -c "#{pane_current_path}"
|