-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.profile
55 lines (42 loc) · 1.12 KB
/
.profile
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
# Uncomment line below if using WSL
# source ~/.wsl
# node version manager (if exists)
NVMRC=~/.nvmrc
if test -f "$NVMRC"; then
source $NVMRC
fi
# node version manager (lazy load)
# source ~/.nvmlazy
# Alias
source ~/.aliases
# Add bin directories to PATH
PATH="$PATH:/usr/local/bin:$HOME/bin:/opt/homebrew/bin:$HOME/.local/bin:$HOME/Library/Python/3.11/bin/:$HOME/Library/Python/3.9/bin/:$HOME/Library/Python/3.8/bin/:$HOME/.deno/bin"
# Language
export LC_ALL=en_GB.UTF-8
export LANG=en_GB.UTF-8
export LANGUAGE=en_GB.UTF-8
ENV=~/.env
if test -f "$ENV"; then
source $ENV
fi
# # dotnet core dev
# export ASPNETCORE_Environment=Development
# # Go dev
# export PATH=$PATH:~/.go/bin
# export GOPATH=~/go
# export PATH=$PATH:~/go/bin
# # Haskell dev
# export PATH=$PATH:~/.cabal/bin:/opt/cabal/2.4/bin:/opt/ghc/7.8.4/bin
# pnpm
export PNPM_HOME="$HOME/Library/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end
# bun completions
[ -s "$HOME/.bun/_bun" ] && source "$HOME/.bun/_bun"
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
export DO_NOT_TRACK=1