Files
dotfiles/tmux/.tmux.conf
2025-08-02 01:21:14 +01:00

33 lines
680 B
Bash

set-option -g default-command "${SHELL}"
set-option -g default-shell "${SHELL}"
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 /home/fergus/.local/bin/tmuxpopup