From c6558236ab5ba3dc2fff9ce1838fff8505a8527b Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 12 Jan 2025 21:26:20 +0100 Subject: [PATCH] feat(zshrc): add support for neovim if built from source --- .zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.zshrc b/.zshrc index 32b470f..63f79d1 100644 --- a/.zshrc +++ b/.zshrc @@ -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