-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_params_dev
38 lines (30 loc) · 983 Bytes
/
.bash_params_dev
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
#!/bin/sh
# golang
export GOBIN=$HOME/.local/share/go/bin
export GOPRIVATE=gitlab.com/readly-ab/*
# 3ds devkit
export DEVKITPRO=/opt/devkitpro
export DEVKITARM=/opt/devkitpro/devkitARM
export DEVKITPPC=/opt/devkitpro/devkitPPC
# dotnet
DOTNET_TOOLS=$HOME/.dotnet/tools
# javascript
YARN_GLOBAL=$(yarn global bin)
source /usr/share/nvm/init-nvm.sh
# ruby
export GEM_HOME=$HOME/.cache/gem
# Load Ruby Version Manager (RVM) into a shell session *as a function*
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
export PATH="$PATH:$HOME/.rvm/bin"
source "$HOME/.rvm/scripts/rvm"
rvm use 2.7.7
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
RVM="$PATH:$HOME/.rvm/bin"
fi
# go
export GOPRIVATE=gitlab.com/readly-ab/*
# direnv (recognizes .envrc files)
eval "$(direnv hook bash)"
# Added by Toolbox App
TOOLBOX=$HOME/.local/share/JetBrains/Toolbox/scripts
export PATH=$PATH:$DOTNET_TOOLS:$YARN_GLOBAL:$DEVKITPRO:$RVM:$TOOLBOX:$GOBIN