You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
433 B

  1. # vim: set ft=sh sw=2 et :
  2. # make less more friendly for non-text input files, see lesspipe(1)
  3. command -v lesspipe.sh >/dev/null 2>&1 && eval "$(SHELL=/bin/sh lesspipe.sh)"
  4. # enable color support of ls and also add handy aliases
  5. if command -v dircolors >/dev/null 2>&1; then
  6. test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
  7. fi
  8. test -r ~/.shell-common.local && source ~/.shell-common.local