X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=examples%2Fcustom_overrides%2Ffred%2Ffred_variables.sh;h=123804987abdb40d1ec9c281705018cdddfe681f;hb=c172a816a820279291b2775198f2c8de5f0d4c5b;hp=e22f2b93d15d7057d93b4635e1110f595fa74649;hpb=b1cb8e1eeecf6d516720e550b7e43f807f9d0082;p=feisty_meow.git diff --git a/examples/custom_overrides/fred/fred_variables.sh b/examples/custom_overrides/fred/fred_variables.sh index e22f2b93..12380498 100644 --- a/examples/custom_overrides/fred/fred_variables.sh +++ b/examples/custom_overrides/fred/fred_variables.sh @@ -7,6 +7,10 @@ if [ -z "$NETHACKOPTIONS" ]; then # The quartz directory has *really* personalized items. export QUARTZDIR=$HOME/quartz + # The cloud directory is our new repository that's always available. It serves as our + # personal cloud for data. + export CLOUD_DIR=$HOME/cloud + # The gruntose web site is expected to reside below, if it exists at all. export WEB_DIR=$HOME/web if [ "$(hostname)" = "zooty.koeritz.com" ]; then @@ -16,7 +20,7 @@ if [ -z "$NETHACKOPTIONS" ]; then # add a bunch of folders to the list for checkin & checkout. these are # definitely personal, and some of them are fairly dated (the yeti and # hoople folders, for example). - REPOSITORY_LIST+=" cloud gamesave hoople hoople1 hoople2 quartz web yeti xsede/xsede_tests xsede/code/cak0l/trunk" + REPOSITORY_LIST+=" cloud ebooks hoople hoople1 hoople2 inova_codebase quartz web yeti xsede/xsede_tests xsede/code/cak0l xsede/docs" # point to our local certificate for ssh usage. export SVN_SSH="ssh -i $HOME/.ssh/id_dsa_sourceforge" @@ -36,11 +40,8 @@ if [ -z "$NETHACKOPTIONS" ]; then export BROWSER=/usr/bin/firefox # editor and other mixed settings... - export VISUAL="$(which gvim)" - if [ $? -ne 0 ]; then - export VISUAL="$(which vi)" - fi export EDITOR="$(which vi)" + export VISUAL="$EDITOR" # the editors for revision control must wait while document is edited, # so gvim and others launched to x window are not appropriate. export GIT_EDITOR="$EDITOR"