Skip to content

Instantly share code, notes, and snippets.

@leomelzer
Created March 11, 2023 21:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leomelzer/ff2f9900d677291ccdffcabcfcd519b4 to your computer and use it in GitHub Desktop.
Save leomelzer/ff2f9900d677291ccdffcabcfcd519b4 to your computer and use it in GitHub Desktop.
My .zshrc
# https://github.com/Schniz/fnm#shell-setup
eval "$(fnm env --use-on-cd)"
# https://github.com/junegunn/fzf#using-homebrew
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# https://docs.brew.sh/Shell-Completion#configuring-completions-in-zsh
if type brew &>/dev/null
then
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
autoload -Uz compinit
compinit
fi
# https://github.com/sindresorhus/pure#getting-started
autoload -U promptinit; promptinit
prompt pure
# https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment