27 lines
515 B
Bash
27 lines
515 B
Bash
# minimal tmux config
|
|
|
|
# history
|
|
set -g history-limit 100000
|
|
|
|
# mouse
|
|
set -g mouse on
|
|
|
|
# utf8 / colors
|
|
set -g default-terminal "screen-256color"
|
|
set -q -g status-utf8 on
|
|
setw -q -g utf8 on
|
|
|
|
# panes retain path
|
|
bind - split-window -v -c "#{pane_current_path}"
|
|
bind _ split-window -h -c "#{pane_current_path}"
|
|
|
|
# shift+arrow window switching
|
|
bind -n S-Left previous-window
|
|
bind -n S-Right next-window
|
|
|
|
# sensible defaults
|
|
set -s escape-time 10
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
set -g renumber-windows on
|