12 lines
504 B
Bash
Executable file
12 lines
504 B
Bash
Executable file
#!/bin/bash
|
|
echo ">> Installing needed Packages - Please Wait!"
|
|
yay -S zsh-autosuggestions-git zsh-completions-git zsh-syntax-highlighting-git zsh-theme-powerlevel10k-git
|
|
|
|
echo ">> Copying Gitconfig - Please Wait!"
|
|
sudo cp ${HOME}/.config/dotfiles/toCopy/gitconfig /etc/gitconfig
|
|
|
|
echo ">> Copying Gitignore - Please Wait!"
|
|
sudo cp ${HOME}/.config/dotfiles/toCopy/gitignore /etc/gitignore
|
|
|
|
echo ">> Copying SSH Config - Please Wait!"
|
|
sudo cp ${HOME}/.config/dotfiles/toCopy/sshconfig /etc/ssh/ssh_config
|