26 lines
374 B
Bash
26 lines
374 B
Bash
case $- in
|
|
*i*) ;;
|
|
*) return;;
|
|
esac
|
|
export OSH='/home/ssfunerals/.oh-my-bash'
|
|
|
|
OSH_THEME="font"
|
|
OMB_USE_SUDO=true
|
|
completions=(
|
|
git
|
|
ssh
|
|
aws
|
|
awscli
|
|
docker
|
|
)
|
|
aliases=(
|
|
general
|
|
)
|
|
plugins=(
|
|
git
|
|
bashmarks
|
|
)
|
|
source "$OSH"/oh-my-bash.sh
|
|
[[ "$TERM" == "xterm-kitty" ]] && alias ssh="TERM=xterm-256color ssh"
|
|
alias x='/bin/bash /home/ssfunerals/confscript.sh'
|