diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2024-10-14 01:35:43 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2024-10-14 01:35:43 +0200 |
commit | 6db7d6ee3a198f26af1966d8a763da0312fa5141 (patch) | |
tree | 46b7251171fcda994567237fd9876f45141a0fbb /tmux | |
parent | 354fdc648ccee35dc13add60db40ffc67a601d35 (diff) | |
download | dotfiles-6db7d6ee3a198f26af1966d8a763da0312fa5141.tar.gz |
fix tmux conf
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/tmux.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf index bcb54fa..a5a295e 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -10,7 +10,7 @@ set-option -g history-limit 5000 bind c new-window -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}" -bind \" split-window -h -c "#{pane_current_path}" +bind \" split-window -c "#{pane_current_path}" bind -n M-Left select-pane -L bind -n M-Right select-pane -R @@ -24,3 +24,4 @@ set -g set-clipboard set-option -sg escape-time 10 set-option -sa terminal-features ',XXX:RGB' +set-option -ga terminal-overrides ",xterm-256color:Tc" |