diff --git a/bootstrap.sh b/bootstrap.sh index c4e365a..1ff66c0 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -14,6 +14,7 @@ test -L $HOME/.gitignore || ln -f -s $BASEDIR/gitignore $HOME/.gitignore test -L $HOME/.hushlogin || ln -f -s $BASEDIR/hushlogin $HOME/.hushlogin test -d $HOME/.ncmpcpp || mkdir $HOME/.ncmpcpp test -L $HOME/.ncmpcpp/config || ln -f -s $BASEDIR/ncmpcpp $HOME/.ncmpcpp/config +test -L $HOME/.tmux.conf || ln -f -s $BASEDIR/tmux $HOME/.tmux.conf test -L $HOME/.functions.zsh || ln -f -s $BASEDIR/functions.zsh $HOME/.functions.zsh test -L $HOME/.zshrc || ln -f -s $BASEDIR/zshrc $HOME/.zshrc diff --git a/tmux b/tmux new file mode 100644 index 0000000..17d78c0 --- /dev/null +++ b/tmux @@ -0,0 +1,10 @@ +# remap prefix from 'C-b' to 'C-a' +unbind C-b +set-option -g prefix C-a +bind-key C-a send-prefix + +# reload config file (change file location to your the tmux.conf you want to use) +bind r source-file ~/.tmux.conf + +# Enable mouse mode (tmux 2.1 and above) +set -g mouse on