mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 04:54:03 -08:00
75 lines
1.8 KiB
JSON
75 lines
1.8 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Package",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceRoot}/src",
|
|
"args": ["--config=${workspaceRoot}/themes/jandedobbeleer.omp.json", "--shell=pwsh"]
|
|
},
|
|
{
|
|
"name": "Launch Tooltip",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceRoot}/src",
|
|
"args": ["--config=${workspaceRoot}/themes/jandedobbeleer.omp.json", "--command=git", "--shell=pwsh"]
|
|
},
|
|
{
|
|
"name": "Launch tests",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "test",
|
|
"program": "${workspaceRoot}/src",
|
|
"args": ["--test.v"]
|
|
},
|
|
{
|
|
"name": "Print debug",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceRoot}/src",
|
|
"args": [
|
|
"--debug",
|
|
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json"
|
|
]
|
|
},
|
|
{
|
|
"name": "Print init pwsh",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceRoot}/src",
|
|
"args": [
|
|
"--print-init",
|
|
"--shell=pwsh",
|
|
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json"
|
|
]
|
|
},
|
|
{
|
|
"name": "Export PNG",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceRoot}/src",
|
|
"args": [
|
|
"--export-png",
|
|
"--shell=shell",
|
|
"--rprompt-offset=40",
|
|
"--cursor-padding=15",
|
|
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json"
|
|
]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Theme export",
|
|
"cwd": "${workspaceFolder}/docs",
|
|
"program": "${workspaceRoot}/docs/export_themes.js",
|
|
"console": "integratedTerminal"
|
|
}
|
|
]
|
|
}
|