From 24914432010272e205a2740ae857bee7c5ff7978 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Mon, 9 Apr 2018 08:34:38 -0500 Subject: [PATCH] Modify tmon alias, switch tmux-resurrect shortcut to allow for tmux shortcut passthrough --- shell/aliases | 2 +- shell/tmux.conf | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/shell/aliases b/shell/aliases index 6b0252f..3227a14 100644 --- a/shell/aliases +++ b/shell/aliases @@ -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? diff --git a/shell/tmux.conf b/shell/tmux.conf index cb7d1ad..be85e03 100644 --- a/shell/tmux.conf +++ b/shell/tmux.conf @@ -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'