This commit is contained in:
nub31
2025-05-07 19:20:06 +02:00
commit 7e1bfbfb2b
22 changed files with 1019 additions and 0 deletions

16
.bashrc Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
PS1='[\u@\h \W]\$ '
source "$HOME/.bashrc-path"
source "$HOME/.bashrc-alias"
# Use bash completion if installed
if [[ "$PS1" && -f /usr/share/bash-completion/bash_completion ]]; then
source /usr/share/bash-completion/bash_completion
fi
# Init starship
if command -v starship > /dev/null; then
eval "$(starship init bash)"
fi