mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
22 lines
353 B
Bash
22 lines
353 B
Bash
#!/usr/bin/env zsh
|
|
|
|
export LANG="en_US.UTF-8"
|
|
export LC_ALL="$LANG"
|
|
|
|
if [[ -z "$USER" && -n "$USERNAME" ]]; then
|
|
export USER="$USERNAME"
|
|
fi
|
|
if is_android; then
|
|
export DEFAULT_USER="$USER"
|
|
else
|
|
export DEFAULT_USER="dmitmel"
|
|
fi
|
|
|
|
if [[ -n "$SSH_CONNECTION" ]]; then
|
|
export EDITOR="rmate"
|
|
else
|
|
export EDITOR="code --wait"
|
|
fi
|
|
|
|
export CLICOLOR="1"
|
|
|