22 lines
567 B
Bash
22 lines
567 B
Bash
# Set prefix to Ctrl-Space instead of Ctrl-b
|
|
unbind C-b
|
|
set-option -g prefix C-Space
|
|
bind-key C-Space send-prefix
|
|
|
|
# Split windows using | and -
|
|
unbind '"'
|
|
unbind %
|
|
bind | split-window -h
|
|
bind - split-window -v
|
|
|
|
# DON'T paste this line in, if you DON'T want vim keybindings
|
|
# Set tmux mode to vi (default is emac)
|
|
set-window-option -g mode-keys vi
|
|
|
|
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run '~/.dotfiles/tmux/plugins/tpm/tpm'
|