13 lines
224 B
Bash
13 lines
224 B
Bash
# ~/.profile: executed by Bourne-compatible login shells.
|
|
|
|
export LC_ALL=en_US.UTF-8
|
|
export EDITOR=vim
|
|
export VISUAL=vim
|
|
|
|
if [ "$BASH" ]; then
|
|
if [ -f ~/.bashrc ]; then
|
|
. ~/.bashrc
|
|
fi
|
|
fi
|
|
|
|
mesg n 2> /dev/null || true
|