1
0
mirror of https://github.com/xlogerais/config-tmux synced 2024-09-19 23:39:58 +02:00
config-tmux/config

30 lines
509 B
Plaintext
Raw Normal View History

2017-09-14 13:29:13 +02:00
# Set history size
set -g history-limit 10000
# Force terminal for 256 colors support
set -g default-terminal "screen-256color"
# Display titles
set -g set-titles on
set -g set-titles-string "#T"
# Make splitting more intuitive
unbind %
bind | split-window -h
bind _ split-window -v
# Keybindings
bind -n S-up new-window
bind -n S-down new-window
bind -n C-left prev
bind -n C-right next
bind -n S-left swap-window -t -1
bind -n S-right swap-window -t +1
bind z resize-pane -Z
# Mouse
set -g mouse on