dotfiles/dotconf/bashrc

48 lines
552 B
Bash

case $- in
*i*) ;;
*) return;;
esac
export OSH=~/.oh-my-bash
OSH_THEME="powerbash10k"
OMB_USE_SUDO=true
completions=(
git
composer
ssh
docker
docker-compose
go
makefile
pip3
system
)
aliases=(
general
ls
)
plugins=(
git
bashmarks
)
source "$OSH"/oh-my-bash.sh
export LANG=de_DE.UTF-8
eval `ssh-agent`
alias c="composer"
alias dc="docker compose"
[ ! -z "$(which starship)" ] && eval "$(starship init bash)"
[ ! -z "$(which direnv)" ] && eval "$(direnv hook bash)"
for f in ~/.bashrc.d/*
do
source "$f"
done