aboutsummaryrefslogtreecommitdiff
path: root/bash/env.sh
blob: ad930f7400c1fd34354dfaba74ae1f051efb3c25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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