lazynvim WIP
This commit is contained in:
16
uninstall/lazynvim
Executable file
16
uninstall/lazynvim
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
set -eo pipefail
|
||||
trap ontrap SIGINT SIGTERM SIGSTOP
|
||||
|
||||
ontrap() {
|
||||
echo
|
||||
echo "[!] Interrupted"
|
||||
exit
|
||||
}
|
||||
|
||||
echo "[*] Uninstalling neovim"
|
||||
|
||||
find "$HOME/.config" -type f -path "*/nvim*" -exec rm -rfv {} +
|
||||
find "$HOME/.local" -type f -path "*/nvim*" -exec rm -rfv {} +
|
||||
|
||||
echo "[*] Finish"
|
||||
Reference in New Issue
Block a user