From 53a7d6460b7b448bc6a695de2c9cf928c2b11855 Mon Sep 17 00:00:00 2001 From: V Date: Mon, 9 Jun 2025 19:14:04 +0000 Subject: [PATCH] Added details for tmux install --- setup_dotenv_files.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup_dotenv_files.sh b/setup_dotenv_files.sh index 07e4202..c6a731e 100755 --- a/setup_dotenv_files.sh +++ b/setup_dotenv_files.sh @@ -1,7 +1,15 @@ #!/bin/bash +echo 'Setting up VIM...' + rsync -ax --exclude .git --exclude setup_dotenv_files.sh --exclude vim_fonts ./ ~/ curl --no-progress-meter -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim -echo 'For VIM: Remember to run ":PlugInstall" on first run to set up the themes and plugins!' +echo 'Done! Remember to run ":PlugInstall" on first run to set up the themes and plugins!' + +echo 'Setting up tmux...' + +git clone https://github.com/tmux-plugins/tpm.git ~/.tmux/plugins/tpm + +echo 'Done! Remember to run "tmux source ~/.tmux.conf" to reload tmux`s config then " + I" to download plugins!'