diff options
-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" |