-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bash_profile
More file actions
67 lines (48 loc) · 1.7 KB
/
Copy path.bash_profile
File metadata and controls
67 lines (48 loc) · 1.7 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
#!/usr/bin/env bash
#
# .bash_profile
#
export MISE_PIN=1
# Source Nix profile
if [ -e ~/.nix-profile/etc/profile.d/nix.sh ]; then
. ~/.nix-profile/etc/profile.d/nix.sh
fi
# Add Nix profile bin to PATH if not already present
if [ -d ~/.nix-profile/bin ]; then
export PATH="$HOME/.nix-profile/bin:$PATH"
fi
# linux PATHs
# export PATH=/snap/bin:${PATH}
# export PATH=/home/linuxbrew/.linuxbrew/sbin:${PATH}
# export PATH=/home/linuxbrew/.linuxbrew/bin:${PATH}
export PATH="/opt/homebrew/bin:$PATH"
. "$HOME/.cargo/env"
source "$HOME/.config/broot/launcher/bash/br"
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
export HOMEBREW_PREFIX=$(brew --prefix)
# JDK
export JAVA_HOME=/opt/homebrew/opt/openjdk@17
# Aliases
alias ll='ls -l'
alias la='ls -la'
# NVM
export NVM_DIR="$HOME/.nvm"
# shellcheck disable=SC1091
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
## [Completion]
## Completion scripts setup. Remove the following line to uninstall
[ -f "$HOME/.config/.dart-cli-completion/bash-config.bash" ] && . "$HOME/.config/.dart-cli-completion/bash-config.bash" || true
## [/Completion]
. "$HOME/.cargo/env"
# Added by Windsurf
export PATH="$HOME/.codeium/windsurf/bin:$PATH"
# Added by OrbStack: command-line tools and integration
# This won't be added again if you remove it.
source "$HOME/.orbstack/shell/init.bash" 2>/dev/null || :
# Added by LM Studio CLI (lms)
export PATH="$PATH:/Users/phatblat/.cache/lm-studio/bin"
# End of LM Studio CLI section
# Initialize mise before appending user-managed binaries.
eval "$(mise activate bash)"
export PATH="$PATH:$HOME/.local/bin"
source /Users/phatblat/.config/broot/launcher/bash/br