feat(zshrc): add support for neovim if built from source

This commit is contained in:
David Ibia
2025-01-12 21:26:20 +01:00
parent 6b953c9338
commit c6558236ab

5
.zshrc
View File

@@ -281,3 +281,8 @@ eval "$(pyenv virtualenv-init -)"
if [ -d "/opt/homebrew/share/zsh-syntax-highlighting" ]; then
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
fi
# Handle neovim if built from source
if [ -d "$HOME/neovim/bin" ]; then
export PATH="$HOME/neovim/bin:$PATH"
fi