Skip to content

Instantly share code, notes, and snippets.

@mike-day
mike-day / .tmux.conf
Last active September 29, 2023 21:15
Basic tmux config
# Set the control character to Ctrl+Spacebar (instead of Ctrl+B)
set -g prefix C-space
unbind-key C-b
bind-key C-space send-prefix
# Set new panes to open in current directory
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"