summaryrefslogtreecommitdiffstats
path: root/.bash_exports
blob: 58b9ab60ab7455530df369767f8f856764df962b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

export LC_ALL='en_US.UTF-8'
export LC_TIME='en_DK.UTF-8'
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)"