]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
tmux.conf: Add, very basic tmux configuration file.
authorSimon Ruderich <simon@ruderich.org>
Sat, 21 May 2011 11:02:07 +0000 (13:02 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 21 May 2011 11:02:07 +0000 (13:02 +0200)
setup.sh
tmux.conf [new file with mode: 0644]

index 755e292ee0458b0bc3204b282c8724e3931fa21c..5f18eb24fea09b0ef5d00e9c6e9a2814887b8520 100755 (executable)
--- a/setup.sh
+++ b/setup.sh
@@ -69,6 +69,9 @@ if installed colordiff; then
 fi
 link inputrc ~/.inputrc
 link screenrc ~/.screenrc
+if installed tmux; then
+    link tmux.conf ~/.tmux.conf
+fi
 
 # Create rlwrap history directory.
 mkdir -p shell/rlwrap
diff --git a/tmux.conf b/tmux.conf
new file mode 100644 (file)
index 0000000..2f1fe10
--- /dev/null
+++ b/tmux.conf
@@ -0,0 +1,10 @@
+# Tmux configuration file.
+
+
+# Use Ctrl-A as escape binding, like in GNU screen.
+set-option -g prefix C-a
+# Ctrl-A a sends Ctrl-A to the process, like in GNU screen.
+bind-key a send-prefix
+unbind-key C-b
+
+# vim: ft=tmux