summary refs log tree commit diff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2016-09-29 16:05:43 -0400
committerJune McEnroe <june@causal.agency>2016-09-29 16:05:43 -0400
commit50c2a4edaf8e26a639f1fd51c9be211d0aa7801c (patch)
tree0b546a54822038442b9a502c1f77b79e7115c21b /.tmux.conf
parentReconfigure tmux (diff)
downloadsrc-50c2a4edaf8e26a639f1fd51c9be211d0aa7801c.tar.gz
src-50c2a4edaf8e26a639f1fd51c9be211d0aa7801c.zip
Set TERM in tmux
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf4
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}'