summaryrefslogtreecommitdiffstats
path: root/.bash_exports
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2016-03-05 12:59:36 (EST)
committer P. J. McDermott <pj@pehjota.net>2016-03-05 12:59:36 (EST)
commitc6f56dabda82e91b8b65aca4d1a5aef6fcefd28b (patch)
tree66223febdf236ba1c0cedd2ee67d6808c2ce7f7f /.bash_exports
parent3d66449c1841c6ac37bb54b8aa3cf9b9482ff07a (diff)
downloadbash-c6f56dabda82e91b8b65aca4d1a5aef6fcefd28b.zip
bash-c6f56dabda82e91b8b65aca4d1a5aef6fcefd28b.tar.gz
bash-c6f56dabda82e91b8b65aca4d1a5aef6fcefd28b.tar.bz2
Better organize things
Diffstat (limited to '.bash_exports')
-rw-r--r--.bash_exports15
1 files changed, 15 insertions, 0 deletions
diff --git a/.bash_exports b/.bash_exports
new file mode 100644
index 0000000..58b9ab6
--- /dev/null
+++ b/.bash_exports
@@ -0,0 +1,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)"