dotfiles/.tmux.conf

18 lines
464 B
Bash

# Enable PS1 colors
set -g default-terminal "screen-256color"
# Resize to smallest attached client
set -g window-size smallest
# Enable mouse support
set -g mouse on
# Set control character to Ctrl+Spacebar
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}"