diff options
author | Juan J. Martinez <jjm@usebox.net> | 2019-08-08 13:33:21 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:28 +0100 |
commit | e35d1c8c7843bdd9ab57f9ea4b3d323fd92924f4 (patch) | |
tree | 44facf9f037d39b55b7fa12c7aeafd7eac8a0739 | |
parent | 1603326e997de7ff915bc0a230431a925ae36d93 (diff) | |
download | dotnvim-e35d1c8c7843bdd9ab57f9ea4b3d323fd92924f4.tar.gz dotnvim-e35d1c8c7843bdd9ab57f9ea4b3d323fd92924f4.zip |
Use the right TERM for tmux
-rw-r--r-- | tmux.conf | 2 | ||||
-rw-r--r-- | tmux.md | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ bind-key C-a send-prefix set -g mouse on # For vim themes -set -g default-terminal "xterm-256color" +set -g default-terminal "tmux-256color" # xterm-style function key sequences setw -g xterm-keys on @@ -18,6 +18,6 @@ ln -s ~/.vim/tmux.conf ~/.tmux.conf Run tmux with `-u2`, or add an alias to your `~/.bashrc`: ``` -alias tmux="tmux -u2" +alias tmux="TERM=tmux-256color tmux -u2" ``` |