sunhat/install/neovim.sh
2024-05-26 16:09:34 -07:00

7 lines
203 B
Bash

if ! command -v neovim &>/dev/null; then
sudo add-apt-repository -y ppa:neovim-ppa/stable
sudo apt update -y
sudo apt install -y neovim
git clone https://github.com/LazyVim/starter ~/.config/nvim
fi