Paws/Configs/Tmux/tmux.conf

43 lines
1.6 KiB
Text
Raw Normal View History

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 \; display-message "Config reloaded..."
2024-04-05 22:11:33 +02:00
# Enable mouse control (clickable windows, panes, resizable panes)
#set -g mouse on
2024-12-02 21:52:54 +01:00
#####################################################################
2024-06-22 22:36:14 +02:00
# History limit
2024-12-02 21:52:54 +01:00
#####################################################################
2024-06-06 00:22:26 +02:00
set -g history-limit 500000
2024-04-05 22:11:33 +02:00
2024-12-02 21:52:54 +01:00
#####################################################################
2024-06-22 22:36:14 +02:00
# Key bindings
2024-12-02 21:52:54 +01:00
#####################################################################
2024-04-05 22:11:33 +02:00
# switch panes using Alt-arrow without prefix
2024-12-02 21:52:54 +01: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-12-02 21:52:54 +01:00
#####################################################################
2024-07-15 20:21:21 +02:00
# Enable full color support
2024-12-02 21:52:54 +01:00
#####################################################################
2024-07-15 20:21:21 +02:00
set -g default-terminal "tmux-256color"
set -ga terminal-overrides ",*256col*:Tc"
#####################################################################
# Start windows and panes at 1, not 0
#####################################################################
set -g base-index 1
setw -g pane-base-index 1
#####################################################################
# Plugins
#####################################################################
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'