From cbafac150859113de9953c5c0398e234e40f9238 Mon Sep 17 00:00:00 2001 From: vemod Date: Tue, 28 Jan 2025 02:33:23 +0100 Subject: [PATCH] Add tmux plugin manager --- setup.sh | 1 + tmux/README.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/setup.sh b/setup.sh index f8599f9..83a0713 100755 --- a/setup.sh +++ b/setup.sh @@ -38,6 +38,7 @@ echo echo "Applying tmux dotfile..." mkdir -p $XDG_CONFIG_HOME/tmux ln -sf $SCRIPT_DIR/tmux/tmux.conf $XDG_CONFIG_HOME/tmux/tmux.conf +git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm ~/.tmux/plugins/tpm/bin/install_plugins # Albert diff --git a/tmux/README.md b/tmux/README.md index 2574de6..8354956 100644 --- a/tmux/README.md +++ b/tmux/README.md @@ -5,6 +5,7 @@ My configuration for [tmux](https://github.com/tmux/tmux). ## Installation Symlink `tmux.conf` to `$XDG_CONFIG_HOME/tmux/tmux.conf`.\ +Install Tmux Plugin Manage using `git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm`\ Then either do Prefix + I in tmux or run `~/.tmux/plugins/tpm/bin/install_plugins` ## Automatic Installation (Linux) @@ -12,5 +13,6 @@ Then either do Prefix + I in tmux or run `~/.tmux/plugins/tpm/bin/install_plugin ```bash mkdir -p $XDG_CONFIG_HOME/tmux ln -s $PWD/tmux.conf $XDG_CONFIG_HOME/tmux/tmux.conf +git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm ~/.tmux/plugins/tpm/bin/install_plugins ```