From c69c0f76a215077ad999cbc53b6cdd6f3551fe62 Mon Sep 17 00:00:00 2001 From: trianta Date: Fri, 6 Feb 2026 00:27:11 -0600 Subject: [PATCH] script: increase automation in setup --- deploy.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/deploy.sh b/deploy.sh index 89e18e6..89f1083 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,5 +1,22 @@ #!/bin/bash +echo "Setting up git user..." +git config --global user.name "trianta" +git config --global user.email "gregcraw2001@gmail.com" +git config --global gpg.format ssh +git config --global user.signingkey ~/.ssh/id_ed25519.pub + + +echo "Getting tools for environment..." +if test -d ~/tools; +then + mkdir ~/tools; +fi +git clone --depth 1 https://github.com/zsh-users/zsh-autosuggestions.git ~/tools/zsh-autosuggestions +git clone --depth 1 https://github.com/zsh-users/zsh-history-substring-search.git ~/tools/zsh-history-substring-search +git clone --depth 1 https://github.com/zsh-users/zsh-syntax-highlighting.git ~/tools/zsh-syntax-highlighting +git clone --depth 1 https://github.com/romkatv/powerlevel10k.git ~/tools/powerlevel10k + echo "Syncing user with nvim..." rsync --delete --recursive $(dirname "$0")/nvim/ ~/.config/nvim