Modify tmon alias, switch tmux-resurrect shortcut to allow for tmux shortcut passthrough
This commit is contained in:
parent
655e1ea802
commit
2491443201
|
@ -46,7 +46,7 @@ alias tmls="tmux list-sessions"
|
|||
alias tmatt="tmux attach -t"
|
||||
alias tu="tmux attach -t utils || tmux new -s utils"
|
||||
alias tdf="tmux attach -t dotfiles || tmux new -s dotfiles -c \"\$DOTFILES_PATH\""
|
||||
alias tmon="tmux attach -t monitor || tmux new -s monitor"
|
||||
alias tmon="tmux attach -t monitoring || tmux new -s monitoring"
|
||||
|
||||
# git aliases
|
||||
# TODO: make these git aliases in the gitconfig?
|
||||
|
|
|
@ -111,11 +111,15 @@ set -g @plugin 'christoomey/vim-tmux-navigator'
|
|||
# plugin options
|
||||
|
||||
# enable continuum
|
||||
set -g @continuum-restore 'off'
|
||||
set -g @continuum-restore 'on'
|
||||
|
||||
# let continuum startup on boot
|
||||
set -g @continuum-boot 'on'
|
||||
|
||||
set -g @resurrect-save 'C-v'
|
||||
# unbind C-s
|
||||
set -g @resurrect-restore 'R'
|
||||
|
||||
# initialize tmux plugin manager
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
||||
|
||||
|
|
Reference in a new issue