From 4b18f62c9a1666a939b5bde1b29e725b9aef2c93 Mon Sep 17 00:00:00 2001 From: Rosa Date: Tue, 17 Feb 2026 03:06:30 +0100 Subject: [PATCH] feat(tmux): add tmux config --- .tmux.conf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .tmux.conf 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