21 lines
388 B
Bash
21 lines
388 B
Bash
# Exit if not interactive
|
|
if [[ $- != *i* ]] ; then
|
|
return
|
|
fi
|
|
|
|
# Environment Variables
|
|
export GIT_EDITOR="vim"
|
|
export PATH="$PATH:$HOME/.local/bin"
|
|
export QT_QPA_PLATFORMTHEME=kvantum
|
|
export VIMINIT="source $HOME/.config/vim/vimrc"
|
|
export WORKON_HOME=~/.local/virtualenvs
|
|
|
|
# Functions
|
|
dfa() {
|
|
echo "dumbfuck alert"
|
|
}
|
|
|
|
# Aliases
|
|
alias sudo=dfa
|
|
alias scrot="$HOME/.local/bin/scrot.sh $@"
|