9 lines
166 B
Bash
9 lines
166 B
Bash
# set EDITOR variable
|
|
if type vim >/dev/null 2>&1; then
|
|
export EDITOR="vim"
|
|
fi
|
|
|
|
# extend PATH variable
|
|
if [ -d "$HOME/bin" ]; then
|
|
export PATH="$HOME/bin:$PATH"
|
|
fi
|