At
This commit is contained in:
parent
b23665dd33
commit
60436b9f71
|
@ -1,6 +1,11 @@
|
||||||
#!/usr/bin/env bash
|
#!/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)"
|
d="$(date -d "${@}" +%s)"
|
||||||
while [[ "$d" -ge "$(date +%s)" ]]; do
|
while [[ "$d" -ge "$(date +%s)" ]]; do
|
||||||
|
|
|
@ -44,6 +44,7 @@ roots = []
|
||||||
comment-token = "#"
|
comment-token = "#"
|
||||||
language-server = { command = "nimlangserver" }
|
language-server = { command = "nimlangserver" }
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
auto-format = true
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "nim"
|
name = "nim"
|
||||||
|
|
Reference in a new issue