22 lines
404 B
Text
22 lines
404 B
Text
|
export PATH="$PATH:$HOME/.local/bin"
|
||
|
|
||
|
export EDITOR=vim
|
||
|
export VISUAL="$EDITOR"
|
||
|
|
||
|
export TERMINAL=st
|
||
|
|
||
|
if which nproc >/dev/null 2>&1; then
|
||
|
export MAKEFLAGS="-j $(( $(nproc) * 3 / 4 ))"
|
||
|
else
|
||
|
export MAKEFLAGS="-j 2"
|
||
|
fi
|
||
|
|
||
|
export PARINIT="rTbgqR B=.,?_A_a Q=_s>|"
|
||
|
|
||
|
export PIPENV_VENV_IN_PROJECT=true
|
||
|
|
||
|
# Automatically start x when logging in on tty1
|
||
|
if [ ! $DISPLAY && $XDG_VTNR -eq 1 ]; then
|
||
|
exec startx
|
||
|
fi
|