11 lines
204 B
Bash
11 lines
204 B
Bash
# Improve Colors
|
|
set -g default-terminal "screen-256color"
|
|
|
|
# Set scrollback buffer
|
|
set -g history-limit 10000
|
|
|
|
# Set binds
|
|
bind-key -n C-S-Left swap-window -t -1
|
|
bind-key -n C-S-Right swap-window -t +1
|
|
|