#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # Variables used by ~/.init.user.sh # #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ## My primary CVS host. CVS_HOST="protempore.net" ## Path on that host to the root CVS directory. CVS_PATH="/var/lib/cvs" ## Non-zero value for USE_KEYCHAIN causes keychain to be started. USE_KEYCHAIN=1 ## Path to the private key on localhost to be added. SSH_KEYFILE="$HOME/.ssh/id_rsa" ## A space-delimited list of apps that use ssh and should # have aliases defined for transparent key adding. SSH_KEY_APPS="ssh hg darcs cvs scp rsync" ## Space-delimited list of hosts on which the ssh aliases should not be made. SSH_ALIAS_EXCLUDE_HOSTS="protempore.net" ## Determines whether coloring occurs in grep output. Valid values # are always, never, and auto. CO is a much easier to type mnemonic # for COLOR_OUTPUT. CO=always ## Path to dictionary file for word lookups (wl function), etc. DICT_FILE=/usr/share/dict/words ## The following variables are used to set variables that various # programs check to determine language/locale/encoding-related # information. If you comment out a variable, then nothing will # be exported based on that variable. ## Controls whether already-set variables should be overwritten # or left as is. # If set to 1 or "1", variables will be set even if they have been # set previously (i.e., they'll be overwritten). Otherwise, they will # be set only if they do not already have a value. VAR_OVERWRITE=1 ## The primary language and encoding. USER_LANG="en_US.UTF-8" ## A space-delimited list of languages used by gettext-based programs: # only the 2-letter code of each is used. This is exported as LINGUAS. # # The following specifies that message translation files for English, # Spanish, German, and French should be installed (all others omitted). # # If you don't set this variable, the script will not set LINGUAS, and # you'll get either what was already set or no setting (which means to # use all available languages). USER_LINGUAS="en es de fr"