77 lines
2.0 KiB
Bash
77 lines
2.0 KiB
Bash
# ~/.config/tmux/tmux.conf
|
|
|
|
set -g escape-time 0
|
|
set -g default-terminal "screen-256color"
|
|
set -ag terminal-overrides ",xterm-256color:RGB"
|
|
set -g history-limit 50000
|
|
set -g display-time 3000
|
|
set -g status-interval 5
|
|
|
|
# Start indexes at 1 instead of 0
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
|
|
# Set term title to current session window
|
|
set -g set-titles on
|
|
set -g set-titles-string "#I: #W"
|
|
|
|
# Change activation from ctrl+b to ctrl+a
|
|
set -g prefix C-a
|
|
unbind C-b
|
|
bind-key C-a send-prefix
|
|
|
|
# Ctrl+A, then Ctrl+C, p/n to cycle windows (faster, can just hold ctrl)
|
|
bind C-p previous-window
|
|
bind C-n next-window
|
|
|
|
# Split windows with | and -
|
|
unbind %
|
|
bind | split-window -h
|
|
|
|
unbind '"'
|
|
bind - split-window -v
|
|
|
|
# Reload config
|
|
unbind r
|
|
bind r source-file ~/.config/tmux/tmux.conf \; display "Config reloaded."
|
|
|
|
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
|
|
|
|
# create new windows in the same cwd
|
|
bind c new-window -c "#{pane_current_path}"
|
|
|
|
# Prompt to rename new windows on creation
|
|
set-hook -g after-new-window 'command-prompt -I "#{window_pane}" "rename-window '%%'"'
|
|
|
|
set -g mouse on
|
|
|
|
set-window-option -g mode-keys vi
|
|
|
|
bind-key -T copy-mode-vi 'v' send -X begin-selection
|
|
bind-key -T copy-mode-vi 'y' send -X copy-selection
|
|
|
|
unbind -T copy-mode-vi MouseDragEnd1Pane
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
|
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
|
#set -g @plugin 'jimeh/tmux-themepack'
|
|
set -g @plugin 'nordtheme/tmux'
|
|
set -g @plugin 'thewtex/tmux-mem-cpu-load'
|
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
|
set -g @plugin 'tmux-plugins/tmux-resurrect' # persist tmux sessions across reboot
|
|
set -g @plugin 'tmux-plugins/tmux-continuum' # automatically saves session every 15 mins
|
|
|
|
#set -g @themepack 'powerline/default/cyan'
|
|
set -g @continuum-restore 'on'
|
|
set -g @resurrect-strategy-nvim 'session'
|
|
set -g @resurrect-capture-pan-contents 'on'
|
|
set -g @resurrect-processes 'ssh' # space separated list of programs to restore
|
|
|
|
run '~/.config/tmux/plugins/tpm/tpm'
|