-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.osx
41 lines (28 loc) · 1.11 KB
/
profile.osx
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
#!/bin/bash
# Add local executables
export PATH="$PATH:$HOME/.local/bin"
# Add emacs
export PATH="$PATH:$HOME/.emacs.d/bin"
# Add Rust
export PATH="$PATH:$HOME/.cargo/bin"
# Add texinfo to the path
export PATH="$PATH:/usr/local/opt/texinfo/bin"
# Add ruby to the path
export PATH="$PATH:/usr/local/opt/ruby/bin"
# Add android-sdk to the path
export PATH="$PATH:/usr/local/share/android-sdk/build-tools/30.0.3/"
# GNU coreutils
export PATH="$PATH:/usr/local/opt/coreutils/libexec/gnubin"
# Import google SDK
if [ -f '/Users/johan/Apps/google-cloud-sdk/path.zsh.inc' ]; then
source '/Users/johan/Apps/google-cloud-sdk/path.zsh.inc'
fi
# Add code binary to the PATH
export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
export PATH="$PATH:/Applications/Visual Studio Code - Insiders.app/Contents/Resources/app/bin"
# MySQL tools
export PATH="/usr/local/opt/mysql-client/bin:$PATH"
# --- common ---
export DOTFILES_PATH="$HOME/dotfiles"
if [ -e /Users/johan/.nix-profile/etc/profile.d/nix.sh ]; then . /Users/johan/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
alias grep="ggrep"