-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
41 lines (30 loc) · 831 Bytes
/
.zshrc
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
# Load configs
for config in ~/.zsh/configs/*; do
source $config
done
# Load functions
for function in ~/.zsh/functions/*; do
source $function
done
# Add dotfiles bin to path
export PATH=$PATH:~/dotfiles/bin
export PATH=/Users/alexstophel/Development/recruiting-tech/ncsa-convoy/bin:$PATH
# Homebrew
eval "$(/opt/homebrew/bin/brew shellenv)"
# Source aliases.
[[ -f ~/.aliases ]] && source ~/.aliases
# Makes color constants available
autoload -U colors
colors
# Enable colored output from ls, etc. on FreeBSD-based systems
export CLICOLOR=1
# Add .bin to the PATH
export PATH="$HOME/.bin:$PATH"
if type brew &>/dev/null
then
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
autoload -Uz compinit
compinit
fi
export PATH="$PATH:/Users/alexstophel/.local/bin"
. /opt/homebrew/opt/asdf/libexec/asdf.sh