26 lines
516 B
Bash
26 lines
516 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Prefered programs environment variables
|
|
export PAGER=less
|
|
if [ -x "$(command -v nvim)" ]
|
|
then
|
|
export EDITOR=nvim
|
|
alias vi=nvim
|
|
elif [ -x "$(command -v vim)" ]
|
|
then
|
|
export EDITOR=vim
|
|
alias vi=vim
|
|
else
|
|
export EDITOR=vi
|
|
fi
|
|
|
|
# Prompt
|
|
if [[ $USER == 'root' ]]; then
|
|
col=31;
|
|
elif [[ $USER == 'geoffrey' ]]; then
|
|
col=32;
|
|
else
|
|
col=33;
|
|
fi
|
|
export PS1="\[\e]2;\u@\H \w\a\]\[\e[0;37m\][\[\e[0;${col}m\]\u\[\e[0;37m\]@\[\e[0;34m\]\h \[\e[0;36m\]\W\[\e[0;37m\]]\$\[\e[0m\] "
|