nvim/nvim-clean.sh
Janis Hutz 3138926e01 [Clean] Add a clean script
This little script helps solve issues caused by cache hits for lazy
(thus versioning breaking). Deletes the caches and install directories
for a full clean install
2025-03-31 10:24:15 +02:00

10 lines
183 B
Bash
Executable File

#!/bin/sh
git pull
rm -rf ~/.local/share/nvim/
rm -rf ~/.local/state/nvim/
rm -rf ~/.cache/nvim/
# Re-Install configs to clean out lazy-lock and all other residue
./nvim-install.sh