20 lines
343 B
Bash
20 lines
343 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=qt5ct
|
|
export VIMINIT="source $HOME/.config/vim/vimrc"
|
|
export WORKON_HOME=~/.local/virtualenvs
|
|
|
|
# Functions
|
|
dfa() {
|
|
echo "dumbfuck alert"
|
|
}
|
|
|
|
# Aliases
|
|
alias sudo=dfa
|