Modify tmon alias, switch tmux-resurrect shortcut to allow for tmux shortcut passthrough

This commit is contained in:
Daniel Flanagan 2018-04-09 08:34:38 -05:00
parent 655e1ea802
commit 2491443201
2 changed files with 6 additions and 2 deletions

View File

@ -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?

View File

@ -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'