Open2
Vim8からNeoVimに乗り換える、2021GW
# 環境
$ uname -a
Darwin mba2020.local 20.3.0 Darwin Kernel Version 20.3.0: Thu Jan 21 00:06:51 PST 2021; root:xnu-
7195.81.3~1/RELEASE_ARM64_T8101 arm64
# とりあえずNeoVimを入れてみる
$ brew install nvim
luajit-openresty is keg-only, which means it was not symlinked into /opt/homebrew,
because it conflicts with the LuaJIT formula.
If you need to have luajit-openresty first in your PATH, run:
echo 'export PATH="/opt/homebrew/opt/luajit-openresty/bin:$PATH"' >> ~/.zshrc
For compilers to find luajit-openresty you may need to set:
export LDFLAGS="-L/opt/homebrew/opt/luajit-openresty/lib"
export CPPFLAGS="-I/opt/homebrew/opt/luajit-openresty/include"
For pkg-config to find luajit-openresty you may need to set:
export PKG_CONFIG_PATH="/opt/homebrew/opt/luajit-openresty/lib/pkgconfig"
export
しろと色々出てきたので、.zshrcに書き込む
$ echo 'export PATH="/opt/homebrew/opt/luajit-openresty/bin:$PATH"' >> ~/.zshr
インストールが完了したので、実行しようとすると怒られる
$ nvim
zsh: killed nvim
どうも、macOSをアップデートしたあと、Xcodeを再インストールしないといけないときがあるらしい。
$ xcode-select --install
$ sudo reboot
しかしうまく動かない。
vscode-neovim で使いたいので 0.5.0 以上が必要なため、とりあえずアンインストールしてnightly版を入れてみる
$ brew uninstall nvim
$ brew install nvim --HEAD
$ nvim
起動した。よくわからないが良しとする。