From: Simon Ruderich Date: Sat, 21 May 2011 11:02:07 +0000 (+0200) Subject: tmux.conf: Add, very basic tmux configuration file. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=2a542e569e62cb7618ab485759ea7994385b5ddd tmux.conf: Add, very basic tmux configuration file. --- 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