-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bash_profile
More file actions
53 lines (35 loc) · 1.46 KB
/
.bash_profile
File metadata and controls
53 lines (35 loc) · 1.46 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
export LANG=en_GB.UTF-8
export EDITOR=nvim
export SHELL=/opt/homebrew/bin/bash
export HOMEBREW_CASK_OPTS="--appdir=/Applications"
export BASH_SILENCE_DEPRECATION_WARNING=1
export MYVIMRC=$HOME/.config/nvim/init.vim
export PATH="/usr/local/opt/mysql@5.7/bin:$PATH"
export PATH="/usr/local/sbin:$PATH"
export PATH=$HOME/flutter/bin:$PATH
export CLOUDSDK_PYTHON=python3
eval "$(/opt/homebrew/bin/brew shellenv)"
export GOPATH=$HOME/go
export GOPRIVATE=github.com/zeals-co-ltd
export PATH="$GOPATH/bin:$PATH"
export PATH=$PATH:~/.kube/plugins/jordanwilson230
echo ".bash_profile loaded"
# The next line updates PATH for the Google Cloud SDK.
if [ -f "/Users/${USER}/google-cloud-sdk/path.bash.inc" ]; then . "/Users/${USER}/google-cloud-sdk/path.bash.inc"; fi
# The next line enables shell command completion for gcloud.
if [ -f "/Users/${USER}/google-cloud-sdk/completion.bash.inc" ]; then . "/Users/${USER}/google-cloud-sdk/completion.bash.inc"; fi
export USE_GKE_GCLOUD_AUTH_PLUGIN=True
# for nand2tetris
export PATH="$PATH:`ghq root`/`ghq list | grep nand`/tools"
export PATH="$PATH:/Users/${USER}/Library/Android/sdk/platform-tools"
if [ -f ~/.bashrc ] ; then
. ~/.bashrc
fi
echo ".bash_profile loaded"
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
# Claude Code credentials for devcontainer
if command -v security >/dev/null 2>&1; then
export CLAUDE_CREDENTIALS=$(security find-generic-password -s 'Claude Code-credentials' -w 2>/dev/null)
fi