Files
dotfiles/.tmux.conf
2026-02-17 03:06:30 +01:00

17 lines
289 B
Bash

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