mirror of
https://github.com/boxpositron/absolute-dotfiles.git
synced 2026-02-28 03:30:37 +00:00
feat(.tmux.conf): set default directory for new horizontal and vertical splits to current pane's directory for better context fix(.tmux.conf): fix pane resize binding to resize down instead of up for better consistency with other bindings
62 lines
1.7 KiB
Bash
62 lines
1.7 KiB
Bash
set -g mouse on
|
|
bind r source-file ~/.tmux.conf
|
|
set-option -sa terminal-features ',xterm-kitty:RGB'
|
|
set-option -sg escape-time 10
|
|
set-option -g focus-events on
|
|
set-window-option -g mode-keys vi
|
|
|
|
# Key Bindings
|
|
# Auto Source tmux.conf
|
|
unbind r
|
|
bind r source-file ~/.tmux.conf \; display "Reloaded!"
|
|
|
|
# Set binding for searching with / and ?
|
|
bind-key / copy-mode \; send-key ?
|
|
|
|
# Setting up vi binds for tmux copy mode
|
|
bind-key -T copy-mode-vi "v" send-keys -X begin-selection
|
|
bind-key -T copy-mode-vi "y" send-keys -X copy-selection
|
|
|
|
unbind -T copy-mode-vi MouseDragEnd1Pane
|
|
|
|
# Setting up vertical split with |
|
|
unbind %
|
|
bind | split-window -h -c '#{pane_current_path}'
|
|
|
|
# Setting up horizontal split with -
|
|
unbind '"'
|
|
bind - split-window -v -c '#{pane_current_path}'
|
|
|
|
# Setting up pane resize with hjkl
|
|
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
|
|
|
|
# Setting up pane minimize/maximize with m
|
|
bind -r m resize-pane -Z
|
|
|
|
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
|
set -g @plugin 'MunifTanjim/tmux-mode-indicator'
|
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
|
set -g @plugin 'tmux-plugins/tmux-continuum'
|
|
|
|
set -g @resurrect-dir "~/.tmux/resurrect"
|
|
set -g @resurrect-capture-pane-contents 'on'
|
|
set -g @continuum-restore 'on'
|
|
|
|
set -g @plugin "dracula/tmux"
|
|
|
|
set -g @dracula-show-powerline true
|
|
set -g @dracula-plugins "weather"
|
|
set -g @dracula-show-flags true
|
|
set -g @dracula-show-left-icon session
|
|
|
|
set -g status-position top
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run '~/.tmux/plugins/tpm/tpm'
|