-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc-KVKXJ9G634
33 lines (25 loc) · 956 Bytes
/
.zshrc-KVKXJ9G634
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
## File that only is sourced if host is KVKXJ9G634
if [ -f $HOME/.stash_token ]; then
source $HOME/.stash_token
fi
if [ -f $HOME/.bbc_token ]; then
source $HOME/.bbc_token
fi
if [ -f $HOME/.afm-git-configrc ]; then
source $HOME/.afm-git-configrc
fi
PRETTIERD_LOCAL_PRETTIER_ONLY=1
PRETTIERD_DEFAULT_CONFIG="$HOME/atlassian/afm/jira/.prettierrc"
# Aliases
alias windows="m1ddc display 1 set input 15; m1ddc display 2 set input 15"
alias mac="m1ddc display 1 set input 17; m1ddc display 2 set input 18"
alias yd="dev-tooling/cli/bin/run"
# homebrew can go first
export PATH="/opt/homebrew/bin:$PATH:/opt/homebrew/opt/util-linux/bin:/opt/atlassian/bin:$HOME/atlassian/afm/afm-tools/path"
# if fnm exists, load it, if not loaded already
if command -v fnm &> /dev/null; then
# if FNM_MULTISHELL_PATH is defined, fnm already loaded
if [ ! -z "$FNM_MULTISHELL_PATH" ]; then
eval "$(fnm env --use-on-cd)" &> /dev/null
fi
fi