Added more env vars, organised file
This commit is contained in:
parent
2079d2b336
commit
8b14bd7908
9
bashrc
9
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
|
||||
|
|
Loading…
Reference in New Issue