diff options
author | June McEnroe <curtis.mcenroe@adgear.com> | 2016-09-29 16:05:43 -0400 |
---|---|---|
committer | June McEnroe <curtis.mcenroe@adgear.com> | 2016-09-29 16:05:43 -0400 |
commit | a0a999b0256111e9b9e20caa900a1789dc05e1c2 (patch) | |
tree | 0f3d7c243d76bafb14cb7d3e1cffb682b5290343 | |
parent | Reconfigure tmux (diff) | |
download | src-a0a999b0256111e9b9e20caa900a1789dc05e1c2.tar.gz src-a0a999b0256111e9b9e20caa900a1789dc05e1c2.zip |
Set TERM in tmux
-rw-r--r-- | .tmux.conf | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.tmux.conf b/.tmux.conf index b3ab7fdd..07d5ac30 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -3,6 +3,8 @@ set -g prefix C-e bind C-e send-prefix set -g escape-time 0 +set -g default-terminal 'screen-256color' + set -g base-index 1 set -g renumber-windows on @@ -14,7 +16,7 @@ set -g window-status-current-format '#[reverse] #{pane_title} ' set -g window-status-separator '|' bind t new-window -c '#{pane_current_path}' -bind C-o last-window +bind o last-window bind s split-window -v -c '#{pane_current_path}' bind v split-window -h -c '#{pane_current_path}' |