我无法安装 0.8 版本以下的 LazyVim for Nvim。
# required
`mv ~/.config/nvim{,.bak}`
# optional but recommended
`mv ~/.local/share/nvim{,.bak}
mv ~/.local/state/nvim{,.bak}
mv ~/.cache/nvim{,.bak}`
# clone the starter
`git clone https://github.com/LazyVim/starter ~/.config/nvim`
# remove the .git folder, so you can add it to your own repo later
`rm -rf ~/.config/nvim/.git`
以上方法不起作用。它只安装 Neovim 0.6 版本,并且不接受加载该版本的 LazyVim。
如何安装大于或等于0.8的版本?
sudo apt update
sudo apt upgrade
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
chmod u+x nvim.appimage
./nvim.appimage
./nvim.appimage --appimage-extract
./squashfs-root/AppRun --version
# Optional: exposing nvim globally.
sudo mv squashfs-root /
sudo ln -s /squashfs-root/AppRun /usr/bin/nvim
nvim
sudo rm /usr/bin/nvim
sudo ln -s /squashfs-root/AppRun /usr/bin/nvim
nvim