Paws/Configs/Tmux/tmux.conf

23 lines
747 B
Text
Raw Normal View History

2024-04-05 20:11:33 +00: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 20:36:14 +00:00
######################################################################
# History limit
######################################################################
2024-06-05 22:22:26 +00:00
set -g history-limit 500000
2024-04-05 20:11:33 +00:00
2024-06-22 20:36:14 +00:00
######################################################################
# Key bindings
######################################################################
2024-04-05 20:11:33 +00:00
# switch panes using Alt-arrow without prefix
2024-06-22 20:36:14 +00:00
###################################
2024-04-05 20:11:33 +00: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