refactor + macro fixes + theme system

This commit is contained in:
2026-03-19 22:58:34 -03:00
parent c0acb64028
commit 6624733756
25 changed files with 308 additions and 66 deletions

11
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Build rendiciones (F5)",
"type": "node",
"request": "launch",
"preLaunchTask": "build-rendiciones"
}
]
}

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"python-envs.defaultEnvManager": "ms-python.python:pyenv"
}

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

@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build-rendiciones",
"type": "shell",
"command": "docker build -t rendiciones:latest .",
"group": "build",
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}