2024-04-05 22:11:33 +02:00
|
|
|
|
|
|
|
# reload config file (change file location to your the tmux.conf you want to use)
|
|
|
|
bind r source-file ~/.tmux.conf
|
|
|
|
|
|
|
|
# Enable mouse control (clickable windows, panes, resizable panes)
|
|
|
|
#set -g mouse on
|
|
|
|
|
2024-06-22 22:36:14 +02:00
|
|
|
######################################################################
|
|
|
|
# History limit
|
|
|
|
######################################################################
|
2024-06-06 00:22:26 +02:00
|
|
|
set -g history-limit 500000
|
2024-04-05 22:11:33 +02:00
|
|
|
|
2024-06-22 22:36:14 +02:00
|
|
|
######################################################################
|
|
|
|
# Key bindings
|
|
|
|
######################################################################
|
2024-04-05 22:11:33 +02:00
|
|
|
# switch panes using Alt-arrow without prefix
|
2024-06-22 22:36:14 +02:00
|
|
|
###################################
|
2024-04-05 22:11:33 +02:00
|
|
|
bind -n M-Left select-pane -L
|
|
|
|
bind -n M-Right select-pane -R
|
|
|
|
bind -n M-Up select-pane -U
|
|
|
|
bind -n M-Down select-pane -D
|
|
|
|
|
2024-07-15 20:21:21 +02:00
|
|
|
######################################################################
|
|
|
|
# Enable full color support
|
|
|
|
######################################################################
|
|
|
|
set -g default-terminal "tmux-256color"
|
|
|
|
set -ga terminal-overrides ",*256col*:Tc"
|