dotfiles/profile

22 lines
408 B
Plaintext
Raw Normal View History

2018-08-18 20:19:05 +00:00
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" -a "$XDG_VTNR" -eq 1 ]; then
2018-08-18 20:19:05 +00:00
exec startx
fi