summaryrefslogtreecommitdiffstats
path: root/tmux.conf
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-08-01 01:06:17 -0500
committerJesse Luehrs <doy@tozt.net>2009-08-01 01:06:17 -0500
commitb2c3311e9f00e5fcf0b1ffc72fecc5675e779859 (patch)
tree4b5f23a2ed273d5146756f2bd863e118cd19daba /tmux.conf
parent0116b34a696d110116f9fcb7b2c0e94e31e57998 (diff)
downloadconf-b2c3311e9f00e5fcf0b1ffc72fecc5675e779859.tar.gz
conf-b2c3311e9f00e5fcf0b1ffc72fecc5675e779859.zip
add tmux configuration
Diffstat (limited to 'tmux.conf')
-rw-r--r--tmux.conf28
1 files changed, 28 insertions, 0 deletions
diff --git a/tmux.conf b/tmux.conf
new file mode 100644
index 0000000..56dcacd
--- /dev/null
+++ b/tmux.conf
@@ -0,0 +1,28 @@
+# bells in any window get sent to the terminal
+set -g bell-action any
+
+# lots of scrollback
+set -g history-limit 4096
+
+# use ^A rather than ^B for the prefix key
+set -g prefix ^A
+
+# hide the statusbar by default
+set -g status off
+
+# use vi keybindings
+setw -g mode-keys vi
+set -g status-keys vi
+
+# use utf8
+setw -g utf8 on
+
+# keybindings
+bind-key a send-prefix
+bind-key ^A choose-window
+bind-key ^C new-window
+bind-key ^D detach-client
+bind-key ^S set status
+
+unbind-key ^B
+unbind-key w