This commit is contained in:
Daniel Flanagan 2022-12-01 17:17:50 -06:00
parent b23665dd33
commit 60436b9f71
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
2 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,11 @@
#!/usr/bin/env bash
[[ -z "$1" ]] && { echo "No argument provided." >&2 ; exit 1; }
usage() {
echo "Usage:"
echo " at <DATE> && command..."
}
[[ -z "$1" ]] && { echo "Error: No DATE argument provided." >&2; usage; exit 1; }
d="$(date -d "${@}" +%s)"
while [[ "$d" -ge "$(date +%s)" ]]; do

View File

@ -44,6 +44,7 @@ roots = []
comment-token = "#"
language-server = { command = "nimlangserver" }
indent = { tab-width = 2, unit = " " }
auto-format = true
[[grammar]]
name = "nim"