Files
dotfiles/tmux/.tmux.conf
2025-06-18 10:31:29 +01:00

32 lines
617 B
Bash

set-option -g default-shell /usr/bin/zsh
set -g mouse on
set -g default-terminal "xterm-kitty"
set -as terminal-features ",xterm-256color:RGB"
setw -g pane-base-index 1
set -g base-index 1
set -g renumber-windows on
set -g history-limit 1000000
unbind C-Space
set -g prefix C-Space
bind C-Space send-prefix
bind * setw synchronize-panes
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind O new-session
bind c new-window -c "#{pane_current_path}"
bind \" split-pane -c "#{pane_current_path}"
bind % split-pane -h -c "#{pane_current_path}"
bind p run-shell tmuxpopup