tmux: add copy/paste hooks

This commit is contained in:
Paul Walker
2025-04-08 11:21:55 +01:00
parent 3f4696cfb7
commit 760542b286
3 changed files with 30 additions and 1 deletions

View File

@@ -98,6 +98,12 @@ set -g @plugin 'seebi/tmux-colors-solarized'
set -g @resurrect-strategy-vim 'session'
set -g @continuum-restore 'on'
# Load OS-specific settings
if-shell "uname | grep -q Linux" "source-file ~/.tmux.linux.conf"
if-shell "uname | grep -q Darwin" "source-file ~/.tmux.mac.conf"
# Load any system-specific/private settings
if-shell "[ -f ~/.tmux.private]" "source ~/.tmux.private"
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'