This commit is contained in:
2026-03-03 13:26:50 +01:00
commit 5bec9f8a87
87 changed files with 2684 additions and 0 deletions

18
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "run",
"type": "shell",
"command": "typst",
"args": ["c", "diploma_nikola_petrov.typ"],
"options": {"cwd": "${workspaceFolder}"},
"group": {
"kind": "build",
"isDefault": true
},
}
]
}