From e3804f74c5cbdf19fca70b458072dfc361141358 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sat, 24 Dec 2022 14:16:11 +0100 Subject: [PATCH] feat(tmux): add new plugin and fix paths --- bin/tmux-nvr | 1 - tmux.conf | 1 + zshrc | 5 ++++- 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 120000 bin/tmux-nvr diff --git a/bin/tmux-nvr b/bin/tmux-nvr deleted file mode 120000 index 4f1d02c..0000000 --- a/bin/tmux-nvr +++ /dev/null @@ -1 +0,0 @@ -/Users/kogakure/.tmux/plugins/tmux-nvr \ No newline at end of file diff --git a/tmux.conf b/tmux.conf index ee4b0a9..c447e98 100644 --- a/tmux.conf +++ b/tmux.conf @@ -140,6 +140,7 @@ set -g @plugin 'akohlbecker/aw-watcher-tmux' set -g @plugin 'jbnicolai/tmux-fpp' # f set -g @plugin 'nhdaly/tmux-scroll-copy-mode' set -g @plugin 'wfxr/tmux-fzf-url' # u +set -g @plugin 'joshmedeski/t-smart-tmux-session-manager' # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run '~/.tmux/plugins/tpm/tpm' diff --git a/zshrc b/zshrc index 95e896c..349faa9 100644 --- a/zshrc +++ b/zshrc @@ -40,13 +40,16 @@ export PATH="$HOME/.rd/bin:$PATH" # Rust export PATH="$HOME/.cargo/bin:$PATH" -# TMUX nvr +# TMUX if [ -n "$TMUX" ]; then eval "$(tmux show-environment -s NVIM_LISTEN_ADDRESS 2> /dev/null)" else export NVIM_LISTEN_ADDRESS=/tmp/nvimsocket fi +export PATH=$HOME/.tmux/plugins/tmux-nvr/bin:$PATH +export PATH=$HOME/.tmux/plugins/t-smart-tmux-session-manager/bin:$PATH + # Conda # >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !!