This commit is contained in:
Jonas Forsberg 2021-11-13 15:06:43 +01:00
parent 4b984c4508
commit b25ece6f69
No known key found for this signature in database
GPG Key ID: F2E9818C70350CC9

View File

@ -1,3 +1,4 @@
#!/bin/bash
export LIBVIRT_DEFAULT_URI="qemu:///system" export LIBVIRT_DEFAULT_URI="qemu:///system"
export HISTSIZE=-1 export HISTSIZE=-1
export HISTFILESIZE=-1 export HISTFILESIZE=-1
@ -20,8 +21,11 @@ if [[ ! "$SSH_AUTH_SOCK" ]]; then
eval "$(<"$XDG_RUNTIME_DIR/ssh-agent.env")" eval "$(<"$XDG_RUNTIME_DIR/ssh-agent.env")"
fi fi
[[ -x "$(command -v kubectl)" ]] && source <(kubectl completion bash) if [[ -d "$HOME"/.bash_completions.d ]];then
[[ -x "$(command -v helm)" ]] && source <(helm completion bash) for file in "$HOME"/.bash_completions.d/*.sh;do
source "$file"
done
fi
# PS1 Prompt # PS1 Prompt
[[ -f "$HOME/.functions/ps1.sh" ]] && source "$HOME/.functions/ps1.sh" [[ -f "$HOME/.functions/ps1.sh" ]] && source "$HOME/.functions/ps1.sh"