diff --git a/bashrc b/bashrc index 497d5be..c845b3b 100644 --- a/bashrc +++ b/bashrc @@ -1,12 +1,19 @@ +# Exit if not interactive if [[ $- != *i* ]] ; then return fi -export VIMINIT="source ~/.config/vim/vimrc" +# 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