Files
Single-install-script/LazyVim.sh
T
alvinlollo 5385c535cb Install prerequisites and update dependency installation
Added installation of prerequisites and improved dependency handling.
2025-10-28 22:21:42 +11:00

19 lines
553 B
Bash

# Install prerequisetes
sudo pacman -S --needed --noconfirm git curl wget python3 python-pip
# LazyVim Install
mv ~/.config/nvim{,.bak}
# optional but recommended
cp ~/.local/share/nvim{,.bak} -r
cp ~/.local/state/nvim{,.bak} -r
cp ~/.cache/nvim{,.bak} -r
git clone https://github.com/alvinlollo/LazyVim ~/.config/nvim
# Dependencys for Gdoc.vim
wget https://raw.githubusercontent.com/alvinlollo/Single-install-script/refs/heads/main/requirements.txt
pip3 install -r requirements.txt --break-system-packages
echo "pip3 install -r requirements.txt"