diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..bbfbcdc --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,16 @@ +set-option -sa terminal-overrides ",xterm*:Tc" + +bind r source-file ~/.tmux.conf + +# remap prefix from 'C-b' to 'C-a' +unbind C-b +set-option -g prefix C-a +bind-key C-a send-prefix + +# split panes using | and - +bind | split-window -h +bind - split-window -v +unbind '"' +unbind % + +set -g mouse on