-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc-mac
33 lines (25 loc) · 1.14 KB
/
.zshrc-mac
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
export DOTFILES="$HOME"/Projects/Me/dotfiles
# ==============================================================================
# Boot Shell
# ==============================================================================
source "$DOTFILES"/zsh/OhMyZsh.zsh
source "$DOTFILES"/zsh/EnvVars.zsh
source "$DOTFILES"/zsh/History.zsh
source "$DOTFILES"/zsh/Keybind.zsh
source "$DOTFILES"/zsh/Aliases.zsh
# ==============================================================================
# Boot Tooling
# ==============================================================================
# fnm (Fast Node Manager)
# See, https://github.com/Schniz/fnm
eval "$(fnm env --use-on-cd)"
source "$HOME"/.config/broot/launcher/bash/br
# ==============================================================================
# iTerm 2 shell integration
# ==============================================================================
HERD=${HERD:-true}
if [ $HERD != false ]; then
# Herd injected PHP binary.
export PATH="/Users/jonsugar/Library/Application Support/Herd/bin/":$PATH
export PHP_INI_SCAN_DIR="/Users/jonsugar/Library/Application Support/Herd/config/php/":$PHP_INI_SCAN_DIR
fi