*Fresh Debian Install *
Sudo apt-get install ninja-build gettext libtool libtool-bin autoconf automake cmake g++ pkg-config unzip doxygen -y
git clone https://github.com/neovim/neovim
cd neovim && make
make install
sudo make install
cd ..
rm -rf neovim
existing neovim source
$cd neovim
$rm -rf .deps/
$rm -rf builds/
$git pull
$make
$sudo make install
Top comments (2)
And you can also add a bash script to establish a Neovim distro (Neovide, NVChad, Astro, Lazy, Kickstart, etc.).
astro-setup.sh
Create a bash script file named
astro-setup.sh
that has content given below:Then just run the command:
lazy-setup.sh
Use the same method in section astro-setup.sh.**
nice, thank you ..