diff options
author | Franck Cuny <fcuny@twitter.com> | 2018-11-18 17:15:15 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2018-11-18 17:15:15 -0800 |
commit | aaf0d197d167b447492241ffb8aac0e77b74a4b1 (patch) | |
tree | 50bccc373681b7c252d5040ffedf71770c976407 /configs | |
parent | [bash] Add '#' at the beginning of the prompt (diff) | |
download | emacs.d-aaf0d197d167b447492241ffb8aac0e77b74a4b1.tar.gz |
[tmux] Small change to binding + fix terminal
At this point we can use xterm instead of screen.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/rcs/tmux.conf | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configs/rcs/tmux.conf b/configs/rcs/tmux.conf index 453cfaf..332e16f 100644 --- a/configs/rcs/tmux.conf +++ b/configs/rcs/tmux.conf @@ -1,5 +1,9 @@ +# Avoid conflicting with emacs key bindings in the shell +unbind C-b +set -g prefix C-z + # 256-color terminal -set-option -g default-terminal "screen-256color" +set-option -g default-terminal "xterm-256color" # Add truecolor support (tmux info | grep Tc) set-option -ga terminal-overrides ",xterm-256color:Tc" @@ -10,9 +14,6 @@ set -g status off # Let's use the mouse set -g mouse on -# Avoid conflicting with emacs key bindings in the shell -set -g prefix C-z - # Do not rename the windows for me set -g allow-rename off |