From 2f12e12cbc6d57345f52f9eeddb49a42414d797e Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Thu, 9 Jul 2026 09:50:25 +0200 Subject: bootstrap: Verschiebe die Skripte nach 'bootstrap/' --- scripts/bootstrap-nvim-dict.sh | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100755 scripts/bootstrap-nvim-dict.sh (limited to 'scripts/bootstrap-nvim-dict.sh') diff --git a/scripts/bootstrap-nvim-dict.sh b/scripts/bootstrap-nvim-dict.sh deleted file mode 100755 index fa29728..0000000 --- a/scripts/bootstrap-nvim-dict.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -set -eu - -SPELL_DIR="$HOME/.local/share/nvim/site/spell" -mkdir -p "$SPELL_DIR" - -cd "$SPELL_DIR" - -download() { - url="$1" - file=$(basename "$url") - - if [ -f "$file" ]; then - echo "Skipping $file (already exists)" - return - fi - - echo "Downloading $file..." - if command -v wget >/dev/null 2>&1; then - wget -q --show-progress "$url" - elif command -v curl >/dev/null 2>&1; then - curl -fLO "$url" - else - echo "ERROR: neither wget nor curl found" - exit 1 - fi -} - -# Deutsche Wörterbücher -download "https://ftp.nluug.nl/pub/vim/runtime/spell/de.utf-8.spl" -download "https://ftp.nluug.nl/pub/vim/runtime/spell/de.utf-8.sug" - -echo "Deutsche Wörterbücher für Neovim installiert!" -- cgit v1.3