From 3138926e010e1178e027e59aaac00dfed9e8e1d3 Mon Sep 17 00:00:00 2001 From: Janis Hutz <development@janishutz.com> Date: Mon, 31 Mar 2025 10:24:15 +0200 Subject: [PATCH] [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 --- nvim-clean.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 nvim-clean.sh diff --git a/nvim-clean.sh b/nvim-clean.sh new file mode 100755 index 0000000..abbe40a --- /dev/null +++ b/nvim-clean.sh @@ -0,0 +1,9 @@ +#!/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