mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-17 10:50:06 -04:00
16 lines
192 B
YAML
16 lines
192 B
YAML
|
|
# https://taskfile.dev
|
||
|
|
|
||
|
|
version: '3'
|
||
|
|
|
||
|
|
vars:
|
||
|
|
GREETING:
|
||
|
|
sh: echo "Hello, World!"
|
||
|
|
# ^ @bash
|
||
|
|
|
||
|
|
tasks:
|
||
|
|
default:
|
||
|
|
cmds:
|
||
|
|
- echo "{{.GREETING}}"
|
||
|
|
# ^ @bash
|
||
|
|
silent: true
|