1
0
Files
dotfiles/.tmux.conf

27 lines
528 B
Bash

# Remap the prefix.
unbind-key C-b
set-option -g prefix C-Space
bind-key C-Space send-prefix
set -s escape-time 0
set -g mouse on
set -g status-keys vi
set -g mode-keys vi
# Status bar.
set -g status-style bg=default
set -g status-right ''
# Reset bindings without the repeat time
bind-key Left select-pane -L
bind-key Right select-pane -R
bind-key Up select-pane -U
bind-key Down select-pane -D
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
run '~/.tmux/plugins/tpm/tpm'