mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
16 lines
262 B
Bash
16 lines
262 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
|
|
|
|
# find editor
|
|
export EDITOR="nvim"
|
|
export VISUAL="$EDITOR"
|
|
alias edit="$EDITOR"
|
|
alias e="$EDITOR"
|
|
|
|
export CLICOLOR="1"
|