deleted sshconfig, as it is not needed any longer

This commit is contained in:
eeleater 2021-05-29 18:51:15 +02:00
parent d13c108694
commit b249204bfd
2 changed files with 2 additions and 27 deletions

View file

@ -1,7 +0,0 @@
Host *
AddressFamily inet
ServerAliveInterval 300
ServerAliveCountMax 2
Host pxm
HostName pxm.eeleater.org

22
install
View file

@ -1,21 +1,3 @@
#!/bin/bash
[[ $1 == "copy" ]] && {
echo ">>> Copying .zshenv - Please Wait! <<<"
cp ${HOME}/.config/dotfiles/copy/zshenv ${HOME}/.zshenv
}
[[ $1 == "clone" ]] && {
echo ">>> Cloning needed Repos - Please Wait! <<<"
mkdir -p zsh/plugins
[ -d "$HOME/.config/dotfiles/zsh/plugins/fzfasd/.git" ] || git clone https://github.com/wookayin/fzf-fasd.git ~/.config/dotfiles/zsh/plugins/fzfasd
[ -d "$HOME/.config/dotfiles/zsh/plugins/syntax/.git" ] || git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.config/dotfiles/zsh/plugins/syntax
[ -d "$HOME/.config/dotfiles/zsh/plugins/suggestions/.git" ] || git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.config/dotfiles/zsh/plugins/suggestions
[ -d "$HOME/.config/dotfiles/zsh/plugins/completions/.git" ] || git clone https://github.com/zsh-users/zsh-completions.git ~/.config/dotfiles/zsh/plugins/completions
[ -d "$HOME/.config/dotfiles/zsh/plugins/fzfmarks/.git" ] || git clone https://github.com/urbainvaes/fzf-marks.git ~/.config/dotfiles/zsh/plugins/fzfmarks
[ -d "$HOME/.config/dotfiles/zsh/plugins/gitignore/.git" ] || git clone https://github.com/voronkovich/gitignore.plugin.zsh.git ~/.config/dotfiles/zsh/plugins/gitignore
[ -d "$HOME/.config/dotfiles/zsh/plugins/jq/.git" ] || git clone https://github.com/reegnz/jq-zsh-plugin.git ~/.config/dotfiles/zsh/plugins/jq
[ -d "$HOME/.config/dotfiles/zsh/plugins/asdf/.git" ] || git clone https://github.com/asdf-vm/asdf.git ~/.config/dotfiles/zsh/plugins/asdf
[ -d "$HOME/.config/dotfiles/zsh/plugins/fzftab/.git" ] || git clone https://github.com/Aloxaf/fzf-tab.git ~/.config/dotfiles/zsh/plugins/fzftab
}
[[ $1 == "" ]] && echo ">>> Use either 'copy' to copy files or 'clone' to clone needed plugins <<<"
echo ">>> Copying .zshenv - Please Wait! <<<"
cp ${HOME}/.config/dotfiles/copy/zshenv ${HOME}/.zshenv