laptop-dots/.config/tmux/tmux.conf

37 lines
869 B
Plaintext
Raw Normal View History

2023-02-20 06:07:04 +00:00
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}'
2023-02-27 07:06:05 +00:00
run '~/.tmux/plugins/tpm/tpm'