addet git_installs

This commit is contained in:
pika 2025-01-06 23:39:28 +01:00
parent 176738d305
commit fe93b5b3e5
2 changed files with 70 additions and 0 deletions

8
.zshrc
View file

@ -587,6 +587,13 @@ _environment() {
[ -d "$HOME/.zsh/plugins/fzf-zsh-plugin/bin" ] && export PATH="$HOME/.zsh/plugins/fzf-zsh-plugin/bin:$PATH"
}
git_installs() {
if [ -e "$HOME/.zsh/.install.sh" ]; then
echo_info "Git installs activated by '_install <package>'"
. "$HOME/.zsh/.install.sh"
fi
}
_end() {
if command_exists fastfetch; then
clear &&
@ -607,6 +614,7 @@ main() {
_environment
_coding_
_alias
git_installs
_end
}