diff options
author | David Runge <dave@sleepmap.de> | 2017-03-29 13:01:17 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2017-03-29 13:01:17 +0200 |
commit | b46077252180e06fcd7b938b84f92055fee32238 (patch) | |
tree | 552418be5c4316d48224625d9f0a2d75b2583324 | |
parent | c6f775db8367d69f84435677d495d3f1eac2a13e (diff) | |
download | dotfiles-b46077252180e06fcd7b938b84f92055fee32238.tar.gz dotfiles-b46077252180e06fcd7b938b84f92055fee32238.tar.bz2 dotfiles-b46077252180e06fcd7b938b84f92055fee32238.tar.xz dotfiles-b46077252180e06fcd7b938b84f92055fee32238.zip |
.tmux.conf: Setting default terminal to tmux-256color. Using terminal-overrides for xterm-termite to have 24bit colors in termite. Using update-environment to force update DISPLAY variable to stick around.
-rw-r--r-- | .tmux.conf | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,9 @@ # Ring the bell if any background window rang a bell set -g bell-action any -set -g default-terminal "screen-256color" +set -g default-terminal "tmux-256color" +set -ga terminal-overrides ",xterm-termite:Tc" +set-option -ga update-environment ' DISPLAY' # split windows like vim # vim's definition of a horizontal/vertical split is reversed from tmux's |