dotfiles/exports.zsh

16 lines
241 B
Bash
Raw Normal View History

2018-02-23 09:38:24 +00:00
#!/usr/bin/env bash
export LANG="en_US.UTF-8"
export LC_ALL="$LANG"
2018-02-24 08:56:02 +00:00
export DEFAULT_USER=dmitmel
2018-02-23 09:38:24 +00:00
if [[ -n $SSH_CONNECTION ]]; then
export EDITOR="rmate"
else
export EDITOR="code"
fi
export CLICOLOR=1
export SDKMAN_DIR="$HOME/.sdkman"