aboutsummaryrefslogtreecommitdiff
path: root/03-environment.zsh
blob: cca67477f7ae9f0ca375e744bb7ae0ca4e0d835f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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

eval $(luarocks path)