-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.profile
More file actions
73 lines (57 loc) · 1.77 KB
/
Copy path.profile
File metadata and controls
73 lines (57 loc) · 1.77 KB
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
69
70
71
72
73
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ]; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ]; then
PATH="$HOME/.local/bin:$PATH"
fi
# Android
export ANDROID_HOME="$HOME/Android/Sdk"
export ANDROID_SDK_ROOT="$ANDROID_HOME"
PATH="$ANDROID_HOME/platform-tools:$PATH"
PATH="$ANDROID_HOME/tools/bin:$PATH"
export CAPACITOR_ANDROID_STUDIO_PATH="$HOME/Applications/android-studio/bin/studio.sh"
# ASDF
PATH="$HOME/.asdf/bin:$PATH"
PATH="$HOME/.asdf/shims:$PATH"
# Bun
PATH="$HOME/.bun/bin:$PATH"
# C#
PATH="$HOME/.dotnet/tools:$PATH"
# Dart
PATH="$PATH:$HOME/.pub-cache/bin"
# Elixir
PATH="$HOME/Applications/elixir/bin:$PATH"
PATH="$HOME/.mix/escripts:$PATH"
# Go
export GOPATH="$HOME/go"
export GOBIN="$GOPATH/bin"
PATH="$GOBIN:$PATH"
# PNPM
export PNPM_HOME="$HOME/.local/share/pnpm"
PATH="$PNPM_HOME:$PATH"
export NODE_OPTIONS=--max-old-space-size=4096
# Python
export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
# Rust
#PATH="$HOME/.cargo/bin:$PATH"
# Swift
PATH="$HOME/Applications/swift/usr/bin:$PATH"
# StarCraft II
export SC2PATH="$HOME/.steam/debian-installation/steamapps/compatdata/3430940832/pfx/drive_c/Program Files (x86)/StarCraft II"