diff options
Diffstat (limited to '.profile')
-rw-r--r-- | .profile | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -8,6 +8,11 @@ # for ssh logins, install and configure the libpam-umask package. #umask 022 +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/bin" ]; then + export PATH="$HOME/bin:$PATH" +fi + # if running bash if [ -n "$BASH_VERSION" ]; then # include .bashrc if it exists @@ -16,7 +21,10 @@ if [ -n "$BASH_VERSION" ]; then fi fi -# set PATH so it includes user's private bin if it exists -if [ -d "$HOME/bin" ] ; then - PATH="$HOME/bin:$PATH" +# set SELECTED_EDITOR, EDITOR, and VISUAL to set the text editor used +if [ -f "$HOME/.selected_editor" ]; then + . "$HOME/.selected_editor" + export SELECTED_EDITOR + export EDITOR="${EDITOR:-$SELECTED_EDITOR}" + export VISUAL="${VISUAL:-$SELECTED_EDITOR}" fi |