added docs for a checkout target.
[feisty_meow.git] / examples / custom_overrides / fred / fred_variables.sh
index 5abc72239a3a9735d44c4793fcf3ce73e1d3d44e..123804987abdb40d1ec9c281705018cdddfe681f 100644 (file)
@@ -1,12 +1,16 @@
 
 # these are my personal overrides.  --fred.
 
-if [ -z "$NETHACKOPTIONS" ]; then
+if [ -z "$NETHACKOPTIONS" ]; then
   # if we don't see the nethack variable defined, this probably hasn't run yet.
 
   # 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"