summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2012-06-11 16:45:28 +0200
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2012-06-11 16:45:28 +0200
commit6064417881e410bc89e15dcec75f627cc1c0f500 (patch)
tree383cb5172d70783f9aa9bea1380e85c066bdfb4a
parente7d301d0c1ac4849d79aeadd2a879e120631ba7c (diff)
downloaddotfiles-6064417881e410bc89e15dcec75f627cc1c0f500.tar.gz
dotfiles-6064417881e410bc89e15dcec75f627cc1c0f500.tar.xz
dotfiles-6064417881e410bc89e15dcec75f627cc1c0f500.zip
bashrc/net/zedat: initial customization
-rw-r--r--bashrc/net/zedat.fu-berlin.de/alias.sh2
-rw-r--r--bashrc/net/zedat.fu-berlin.de/env.sh2
-rw-r--r--bashrc/net/zedat.fu-berlin.de/git-env.sh2
-rw-r--r--bashrc/net/zedat.fu-berlin.de/locale.sh12
4 files changed, 18 insertions, 0 deletions
diff --git a/bashrc/net/zedat.fu-berlin.de/alias.sh b/bashrc/net/zedat.fu-berlin.de/alias.sh
new file mode 100644
index 0000000..ed6954b
--- /dev/null
+++ b/bashrc/net/zedat.fu-berlin.de/alias.sh
@@ -0,0 +1,2 @@
+# ssh island
+alias I="ssh island"
diff --git a/bashrc/net/zedat.fu-berlin.de/env.sh b/bashrc/net/zedat.fu-berlin.de/env.sh
new file mode 100644
index 0000000..a8cde92
--- /dev/null
+++ b/bashrc/net/zedat.fu-berlin.de/env.sh
@@ -0,0 +1,2 @@
+export PERL5LIB="$HOME/.perl5lib/lib/perl5"
+export PATH="$HOME/prefix/usr/bin:$HOME/.cabal/bin:$PATH"
diff --git a/bashrc/net/zedat.fu-berlin.de/git-env.sh b/bashrc/net/zedat.fu-berlin.de/git-env.sh
new file mode 100644
index 0000000..faf6a41
--- /dev/null
+++ b/bashrc/net/zedat.fu-berlin.de/git-env.sh
@@ -0,0 +1,2 @@
+export GIT_AUTHOR_EMAIL="alexander.sulfrian@fu-berlin.de"
+export GIT_COMMITTER_EMAIL="alexander.sulfrian@fu-berlin.de"
diff --git a/bashrc/net/zedat.fu-berlin.de/locale.sh b/bashrc/net/zedat.fu-berlin.de/locale.sh
new file mode 100644
index 0000000..e385de0
--- /dev/null
+++ b/bashrc/net/zedat.fu-berlin.de/locale.sh
@@ -0,0 +1,12 @@
+# find a usuable locale
+eval unset ${!LC_*} LANG
+
+if hash locale >/dev/null 2>&1 ; then
+ if locale -a | grep "en_US.iso885915" >/dev/null 2>&1 ; then
+ export LANG="en_US.iso885915"
+ elif locale -a | grep "en_US.iso88591" >/dev/null 2>&1 ; then
+ export LANG="en_US.iso88591"
+ fi
+fi
+
+export LC_COLLATE="C"