-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbash_profile
More file actions
28 lines (21 loc) · 806 Bytes
/
Copy pathbash_profile
File metadata and controls
28 lines (21 loc) · 806 Bytes
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
# User specific environment and startup programs
export BUN_INSTALL="${HOME}/.bun"
PATH="${HOME}/.local/bin:${PATH}"
PATH="${PATH}:${HOME}/local/bin"
PATH="${PATH}:${HOME}/go/bin"
PATH="${PATH}:${HOME}/.local/share/coursier/bin"
PATH="${HOME}/.local/share/nvim/mason/bin:${PATH}"
PATH="${PATH}:${HOME}/bin"
PATH="${PATH}:${HOME}/.opencode/bin"
PATH="${BUN_INSTALL}/bin:${PATH}"
export PATH
source ~/.api_keys.sh
[ -s "/home/merlin/.jabba/jabba.sh" ] && source "/home/merlin/.jabba/jabba.sh"
if [ -e /home/merlin/.nix-profile/etc/profile.d/nix.sh ]; then . /home/merlin/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
. "$HOME/.cargo/env"
. "$HOME/.atuin/bin/env"
# Set up the $PATH first, then invoke bashrc.
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi