37 lines
882 B
Plaintext
37 lines
882 B
Plaintext
|
unbind C-b
|
||
|
set -g prefix C-a
|
||
|
bind-key C-a send-prefix
|
||
|
|
||
|
bind c new-window -c "#{pane_current_path}"
|
||
|
bind | split-window -h -c "#{pane_current_path}"
|
||
|
bind - split-window -v -c "#{pane_current_path}"
|
||
|
unbind '"'
|
||
|
unbind %
|
||
|
|
||
|
set -g @plugin 'tmux-plugins/tpm'
|
||
|
set -g @plugin 'laktak/extrakto'
|
||
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||
|
set -g @plugin 'tmux-plugins/tmux-continuum'
|
||
|
set -g @resurrect-strategy-nvim 'session'
|
||
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
||
|
|
||
|
set -g @continuum-restore 'on'
|
||
|
set -g @continuum-boot 'on'
|
||
|
|
||
|
bind r source-file ~/.tmux.conf
|
||
|
|
||
|
set -g base-index 1
|
||
|
setw -g pane-base-index 1
|
||
|
set -sg escape-time 0
|
||
|
set -g mouse on
|
||
|
set -g default-terminal "screen-256color"
|
||
|
|
||
|
set-option -g focus-events on
|
||
|
|
||
|
set-option -sa terminal-overrides '.screen-256color:RGB'
|
||
|
|
||
|
set-window-option -g mode-keys vi
|
||
|
set -g status-right '#{now_playing}'
|
||
|
|
||
|
run '~/.local/share/tmux/plugings/tpm/tpm'
|