38 lines
599 B
Bash
38 lines
599 B
Bash
set -g default-terminal "xterm-256color"
|
|
|
|
set-option -sa terminal-overrides ",xterm-256color:RGB"
|
|
|
|
set-option -sg escape-time 10
|
|
|
|
set -s escape-time 0
|
|
|
|
set -g prefix C-a
|
|
unbind C-b
|
|
bind-key C-a send-prefix
|
|
|
|
unbind %
|
|
bind | split-window -h
|
|
|
|
unbind '"'
|
|
bind - split-window -v
|
|
|
|
unbind r
|
|
bind r source-file ~/.tmux.conf
|
|
|
|
bind -r j resize-pane -D 5
|
|
bind -r k resize-pane -U 5
|
|
bind -r l resize-pane -R 5
|
|
bind -r h resize-pane -L 5
|
|
|
|
bind -r m resize-pane -Z
|
|
|
|
set -g mouse on
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
|
|
# Tmux Plugins
|
|
|
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|