12 lines
212 B
Bash
12 lines
212 B
Bash
if [[ -f ~/.bashrc ]]; then
|
|
. ~/.bashrc;
|
|
fi
|
|
|
|
export EDITOR="nvim"
|
|
export MANPAGER="nvim +Man!"
|
|
|
|
export LANG="en_US.UTF-8"
|
|
export LC_ALL="en_US.UTF-8"
|
|
export EDITOR="nvim" VISUAL="codium"
|
|
. "$HOME/.cargo/env"
|