You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
install neovim stable
add-apt-repository ppa:neovim-ppa/unstable
apt-get update
apt-get install neovim
这个unstable才有0.11.0版本
#移除源
add-apt-repository --remove ppa:neovim-ppa/stable
#执行nvimdots配置安装命令
if command -v curl >/dev/null 2>&1; then
bash -c "$(curl -fsSL https://raw.githubusercontent.com/ayamir/nvimdots/HEAD/scripts/install.sh)"
else
bash -c "$(wget -O- https://raw.githubusercontent.com/ayamir/nvimdots/HEAD/scripts/install.sh)"
fi
依赖tree-sitter
wget https://github.com/tree-sitter/tree-sitter/releases/download/v0.25.4/tree-sitter-linux-x64.gz
gunzip tree-sitter-linux-x64.gz
mv tree-sitter-linux-x64 tree-sitter
chmod a+x tree-sitter
mv tree-sitter /usr/bin/
Beta Was this translation helpful? Give feedback.
All reactions