Tmux config tweaks

This commit is contained in:
2024-09-24 22:14:08 +01:00
parent e6ad240176
commit 3c5fac8dd0

View File

@@ -1,9 +1,12 @@
# easy reload config # easy reload config
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded." bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded."
# Enable full colors
set-option -sa terminal-overrides ",xterm*:Tc"
# set window split # set window split
bind-key v split-window -h bind-key v split-window -h -c "#{pane_current_path}"
bind-key b split-window bind-key b split-window -v -c "#{pane_current_path}"
# default window title colors # default window title colors
set-window-option -g window-status-style fg=colour244,bg=default,dim set-window-option -g window-status-style fg=colour244,bg=default,dim
@@ -31,16 +34,19 @@ bind-key C-a last-window
# Start index at 1 # Start index at 1
set -g base-index 1 set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
# Allows for faster key repetition # Allows for faster key repetition
set -s escape-time 50 set -s escape-time 50
# Rather than constraining window size to the maximum size of any client # Rather than constraining window size to the maximum size of any client
# connected to the *session*, constrain window size to the maximum size of any # connected to the *session*, constrain window size to the maximum size of any
# client connected to *that window*. Much more reasonable. # client connected to *that window*. Much more reasonable.
setw -g aggressive-resize on setw -g aggressive-resize on
# Allows us to use C-a a <command> to send commands to a TMUX session inside # Allows us to use C-a a <command> to send commands to a TMUX session inside
# another TMUX session # another TMUX session
bind-key a send-prefix bind-key a send-prefix
@@ -82,3 +88,6 @@ set -g mouse on
set-option -g focus-events on set-option -g focus-events on
set-option -sa terminal-features ',foot:RGB' set-option -sa terminal-features ',foot:RGB'
# Remove confirm prompts
bind-key x kill-pane
bind-key & kill-window