#!/bin/sh export LC_ALL='en_US.UTF-8' export LC_TIME='en_DK.UTF-8' export TZ='America/New_York' export EDITOR='vim' if [ -x /usr/bin/dircolors ]; then if [ -r ~/.dircolors ]; then eval "$(dircolors -b ~/.dircolors)" else eval "$(dircolors -b)" fi fi [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"