blob: 18b77d357cc96e60dea56c78bb9750844aba9c0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
export PATH="$HOME/.cargo/bin:$HOME/.local/bin:$PATH"
if [[ "$TERM" == "alacritty" ]] ; then
export TERM=xterm-256color
fi
if ( which luarocks &>/dev/null ) ; then
eval $(luarocks path)
fi
export LANG=en_US.UTF-8
export EDITOR=nvim
if [ -x luarocks ] ; then
eval $(luarocks path)
fi
|