-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacos_config.zsh
39 lines (32 loc) · 997 Bytes
/
macos_config.zsh
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
# ____ __ _
# / ___|___ _ __ / _(_) __ _
# | | / _ \| '_ \| |_| |/ _` |
# | |__| (_) | | | | _| | (_| |
# \____\___/|_| |_|_| |_|\__, |
# |___/
# --------------
# PATH VARIABLES
# --------------
export PATH="$PATH:$HOME/.foundry/bin" # Foundry Path
export PATH="$PATH:$HOME/go/bin" # Go Path
export PATH="$PATH:$HOME/.local/bin" # Go Path
export PATH="$PATH:$HOME.local/share/bob/nvim-bin" # Bob path
# -----------
# GLOBAL VARS
# -----------
export DYLD_LIBRARY_PATH="/opt/homebrew/lib/"
export EDITOR="nvim"
export BROWSER="open -a Arc"
export DOCKER_HOST="unix://$HOME/.colima/docker.sock" # mColima Docker Host
export PNPM_HOME="/Users/lawrencelim/Library/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
# -----
# EVALS
# -----
eval "$(/opt/homebrew/bin/brew shellenv)" # Homebrew Path
eval "$(starship init zsh)" # Starship Prompt
eval $(opam env)