dotfiles/.tmux.conf
Patrick Wadström ed92720d1e Initial commit
2020-04-20 20:36:35 +02:00

27 lines
655 B
Plaintext

set-option -g prefix C-d
unbind-key C-a
bind-key C-g send-prefix
set -g base-index 1
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."
setw -g mode-keys vi
setw -g mouse on
set-option -g default-terminal screen-256color
bind-key v split-window -h -c "#{pane_current_path}"
bind-key s split-window -v -c "#{pane_current_path}"
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
bind-key H resize-pane -L 10
bind-key J resize-pane -D 10
bind-key K resize-pane -U 10
bind-key L resize-pane -R 10
setw -g monitor-activity on
set -g visual-activity on
set -g focus-events on