|
|
|
@ -9,7 +9,7 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
|
|
|
|
# Put this in `.tmux.conf` to override the default: |
|
|
|
|
# `set-environment -g TMUX_PLUGIN_MANAGER_PATH "/some/other/path/"` |
|
|
|
|
set_tpm_path() { |
|
|
|
|
$CURRENT_DIR/scripts/set_tpm_path.sh 2>&1 1>&/dev/null |
|
|
|
|
$CURRENT_DIR/scripts/set_tpm_path.sh >/dev/null 2>&1 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# 1. Fetches plugin names from `@tpm_plugins` user variable. |
|
|
|
@ -18,7 +18,7 @@ set_tpm_path() { |
|
|
|
|
# - no errors raised if directory does not exist |
|
|
|
|
# Files are sourced as tmux config files, not as shell scripts! |
|
|
|
|
source_plugins() { |
|
|
|
|
$CURRENT_DIR/scripts/source_plugins.sh 2>&1 1>&/dev/null |
|
|
|
|
$CURRENT_DIR/scripts/source_plugins.sh >/dev/null 2>&1 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# Defines key binding: |
|
|
|
|