-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc.local
31 lines (21 loc) · 955 Bytes
/
zshrc.local
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
# On ambiguous completion, show a list
setopt auto_list
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
export PROJECTS=~/Dev
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
# Homebrew installation not yet supported
# See https://github.com/bigH/git-fuzzy/issues/3
export PATH="$PROJECTS/Jeff/git-fuzzy/bin:$PATH"
# Homebrew Caveats: postgresql@16 is keg-only, which means it was not symlinked
# into /usr/local, because this is an alternate version of another formula.
# If you need to have postgresql@16 first in your PATH, run:
export PATH="/usr/local/opt/postgresql@16/bin:$PATH"
export PATH="$HOME/.bin:$PATH"
# Append asdf completions to fpath
fpath=(${ASDF_DIR}/completions $fpath)
# Initialise completions with ZSH's compinit
autoload -Uz compinit
compinit
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# Include configuration not tracked in source control
[[ -f ~/.zshrc.extra ]] && source ~/.zshrc.extra