dotfiles/profile
Midgard 217a8f4f7a
[profile] Remove default -j X for make
Badly written makefiles break when you run them in parallel
2019-06-13 19:40:33 +02:00

16 lines
319 B
Bash

export PATH="$PATH:$HOME/.local/bin:$HOME/.cargo/bin"
export EDITOR=vim
export VISUAL="$EDITOR"
export TERMINAL=xfce4-terminal
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
exec startx
fi