summaryrefslogtreecommitdiffstats
path: root/tmux.conf
diff options
context:
space:
mode:
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