diff options
Diffstat (limited to 'bash/env.sh')
-rw-r--r-- | bash/env.sh | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/bash/env.sh b/bash/env.sh new file mode 100644 index 0000000..ad930f7 --- /dev/null +++ b/bash/env.sh @@ -0,0 +1,58 @@ +#!/usr/bin/env bash + + +export PATH="$HOME/annex/bin/:$PATH" + +# +# Git Annex +# + +export RSYNC_NET_URL=16686@ch-s010.rsync.net +export R=$RSYNC_NET_URL + + +# +# Perl6 +# + +export PATH=~/.rakudobrew/bin:$PATH + + +# +# Haskel Stack +# + +export PATH=~/.local/bin:$PATH + + + +# +# Misc +# + +export EDITOR=vi +export PATH="$HOME/dev/code/dotfiles/scripts/:$PATH" +export YT_TEMPLATE="~/Downloads/yt-dl/%(uploader)s/%(upload_date)s %(title)s.%(ext)s" +export INPUTRC=~/.inputrc + + + +# +# Global (not NixOS) NPM +# + +export PATH="$HOME/.npm-packages/bin/:$PATH" + + + +# +# NixOS +# + +export SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt + +# +# Leiningen +# + +export LEIN_SUPPRESS_USER_LEVEL_REPO_WARNINGS=1 |