forked from JDevlieghere/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.exports
68 lines (56 loc) · 1.45 KB
/
.exports
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
59
60
61
62
63
64
65
66
67
68
# Set default editor to Vim.
set -x EDITOR vim
set -x VISUAL vim
# US English (UTF-8)
set -x LC_COLLATE en_US.UTF-8
set -x LC_CTYPE en_US.UTF-8
set -x LC_MESSAGES en_US.UTF-8
set -x LC_MONETARY en_US.UTF-8
set -x LC_NUMERIC en_US.UTF-8
set -x LC_TIME en_US.UTF-8
set -x LC_ALL en_US.UTF-8
set -x LANG en_US.UTF-8
set -x LANGUAGE en_US.UTF-8
set -x LESSCHARSET utf-8
# PATH
set PATH /usr/local/sbin /usr/local/bin /usr/sbin /usr/bin /sbin /bin $PATH
# dotfiles
set PATH $PATH $HOME/dotfiles/scripts
# Use GNU core utils on macOS if available.
if test -e /usr/local/opt/coreutils
set PATH /usr/local/opt/coreutils/libexec/gnubin $PATH
end
# Araxis Merge
if test -e /Applications/Araxis\ Merge.app/Contents/Utilities
set PATH /Applications/Araxis\ Merge.app/Contents/Utilities $PATH
end
# ccache
if test -e /usr/lib/ccache
set PATH /usr/lib/ccache $PATH
end
if test -e /usr/local/opt/ccache
set PATH /usr/local/opt/ccache/libexec $PATH
end
# distcc
if test -e ~/.distcc/hosts
if type -p distcc >/dev/null 2>&1
set -x CCACHE_PREFIX "distcc"
end
end
# Go
if test -e $HOME/go
set -x GOPATH $HOME/go
set PATH $PATH $GOPATH/bin
end
# Rust
if test -e $HOME/.cargo
set PATH $PATH $HOME/.cargo/bin/
end
# Haskell
if test -e $HOME/.cabal
set PATH $PATH $HOME/.cabal/bin/
end
# fzf
set FZF_DEFAULT_OPTS "--color dark,hl:33,hl+:37,fg+:235,bg+:136,fg+:254 --color info:254,prompt:37,spinner:108,pointer:235,marker:235"
# ssh
set -x SSH_KEY_PATH $HOME/.ssh/id_rsa