From 1a24c00a4f0e798dbaeed60372b626f7eff645ff Mon Sep 17 00:00:00 2001 From: Saibotk Date: Wed, 20 Mar 2024 21:41:37 +0100 Subject: [PATCH] chore(macos): remove pynvim install This is unused, since we are using lua plugins now and also does not work anymore, because Homebrew follows PEP668, which discourages installing packages without the package manager or outside of a venv. --- install-mac.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/install-mac.sh b/install-mac.sh index a88523f..80a61b6 100755 --- a/install-mac.sh +++ b/install-mac.sh @@ -28,9 +28,6 @@ brew bundle --file ${DOTFILES}/macos/Brewfile # gnupg is not really needed but marked as a dependency for pass brew unlink gnupg -# Install pynvim for nvim -pip3 install --user pynvim - # Paths to openssl to build pecl extensions (swoole) export PATH="${HOMEBREW_PREFIX}/opt/openssl@3/bin:$PATH" export LDFLAGS="-L${HOMEBREW_PREFIX}/opt/openssl@3/lib"