-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path14-source-files.rc
More file actions
37 lines (29 loc) · 884 Bytes
/
14-source-files.rc
File metadata and controls
37 lines (29 loc) · 884 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
29
30
31
32
33
34
35
36
37
# shellcheck disable=SC2148 disable=SC1090 shell=bash
# Node / Javascript
# Note: If this doesn't work, make sure you've cleaned up nvm directories and related PATHs
eval "$(/opt/homebrew/bin/fnm env --use-on-cd --corepack-enabled)"
#saml2aws
eval "$(saml2aws --completion-script-zsh)"
#asdf
# . /opt/homebrew/opt/asdf/libexec/asdf.sh
#pyenv
export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
# Disable venv's built-in prompt modification - we handle it in 10-prompt.rc
export VIRTUAL_ENV_DISABLE_PROMPT=1
. ~/.venv/bin/activate
# # pnpm
# export PNPM_HOME="/Users/samm/Library/pnpm"
# case ":$PATH:" in
# *":$PNPM_HOME:"*) ;;
# *) export PATH="$PNPM_HOME:$PATH" ;;
# esac
# pnpm end
#nav
# source "${HOME}/.nav/nav.zsh"
# nav bindkeys
#cargo
if [ -f "$HOME/.cargo/env" ]; then
. "$HOME/.cargo/env"
fi