From 2a542e569e62cb7618ab485759ea7994385b5ddd Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 21 May 2011 13:02:07 +0200 Subject: [PATCH] tmux.conf: Add, very basic tmux configuration file. --- setup.sh | 3 +++ tmux.conf | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100644 tmux.conf diff --git a/setup.sh b/setup.sh index 755e292..5f18eb2 100755 --- 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 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 -- 2.44.1