fix: update TMUX configuration

Ensure that TMUX uses the default term of the terminal emulator in use.
This commit is contained in:
Dan Anglin 2024-06-04 12:33:30 +01:00
parent 61e0960a66
commit b0db6ff602
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -1,5 +1,6 @@
set-option -g default-terminal "tmux-256color"
set-option -g default-shell /bin/bash
set-option -g default-terminal "$TERM"
set-option -ag terminal-overrides ",$TERM:Tc"
set-option -g default-shell /usr/bin/bash
set-option -g mouse off
set-window-option -g status-keys vi
@ -33,7 +34,7 @@ set -sg escape-time 10
# Enable focus events for the autoread feature in neovim
set-option -g focus-events on
# Create new panes or windows with the current working directory
# Create new spilts or windows with the current working directory
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"