11 lines
230 B
Bash
Executable File
11 lines
230 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
log() {
|
|
printf '[windsurf-setup] %s\n' "$1"
|
|
}
|
|
|
|
SETTINGS_DIR="${HOME:-/home/coder}/.config/windsurf"
|
|
mkdir -p "$SETTINGS_DIR"
|
|
log "Windsurf configuration directory ensured at $SETTINGS_DIR"
|