summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2014-11-19 11:54:14 +0900
committerSean Whitton <spwhitton@spwhitton.name>2014-11-19 11:54:14 +0900
commitc25d139531d16a4742819d32deaaff979e793e37 (patch)
tree6571c567f018052a9c13971478b1b8cfea8f053b /.tmux.conf
parent35accf15854cb52d90de156f54c9a94e6ea7eb38 (diff)
downloaddotfiles-c25d139531d16a4742819d32deaaff979e793e37.tar.gz
trying C-t as a tmux prefix key
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf13
1 files changed, 7 insertions, 6 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 1515c1ef..027e526e 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -15,6 +15,7 @@ set -sg escape-time 1
set -g set-titles on
set -g set-titles-string "tmux #I:#W"
setw -g mode-keys vi
+set -g status-keys vi
set-window-option -g xterm-keys on
set -g default-terminal "screen-256color"
@@ -31,13 +32,13 @@ set -g status-right "#[fg=blue]#S #I:#P #[fg=yellow]:: %d %b %Y #[fg=green]:: %l
# --- key bindings
-unbind C-h
-set -g prefix C-h
+unbind C-t
+set -g prefix C-t
-# C-z Z to send C-z to e.g. nested tmux, and C-z C-z to bounce between windows
-bind h send-prefix
-unbind C-h
-bind-key C-h last-window
+# C-t t to send C-t to e.g. nested tmux, and C-t C-t to bounce between windows
+bind t send-prefix
+unbind C-t
+bind-key C-t last-window
# splitting should maintain current working directory
bind '"' split-window -c "#{pane_current_path}"