mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
15 lines
213 B
Bash
15 lines
213 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
export LANG="en_US.UTF-8"
|
||
|
export LC_ALL="$LANG"
|
||
|
|
||
|
if [[ -n $SSH_CONNECTION ]]; then
|
||
|
export EDITOR="rmate"
|
||
|
else
|
||
|
export EDITOR="code"
|
||
|
fi
|
||
|
|
||
|
export CLICOLOR=1
|
||
|
|
||
|
export SDKMAN_DIR="$HOME/.sdkman"
|