This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "workbench.colorCustomizations": { | |
| // Contrast Colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast. | |
| "contrastActiveBorder": "", | |
| "contrastBorder": "", | |
| // Base Colors | |
| "focusBorder": "", | |
| "foreground": "", | |
| "widget.shadow": "", | |
| "selection.background": "", | |
| "descriptionForeground": "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Default colors dark", | |
| "type": "dark", | |
| "colors": { | |
| // Base colors | |
| "focusBorder": "#007fd4", | |
| "foreground": "#cccccc", | |
| "widget.shadow": "#0000005c", | |
| // "selection.background": // null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "workbench.colorCustomizations": { | |
| // Contrast colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast | |
| "contrastActiveBorder": "", //An extra border around active elements to separate them from others for greater contrast. | |
| "contrastBorder": "", //An extra border around elements to separate them from others for greater contrast. | |
| //Base colors | |
| "focusBorder": "", //Overall border color for focused elements. This color is only used if not overridden by a component. | |
| "foreground": "", //Overall foreground color. This color is only used if not overridden by a component. | |
| "disabledForeground": "", //Overall foreground for disabled elements. This color is only used if not overridden by a component. | |
| "widget.border": "", //Border color of widgets such as Find/Replace inside the editor. | |
| "widget.shadow": "", //Shadow color of widgets such as Find/Replace inside the editor. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| /* UI */ | |
| "workbench.colorTheme": "Monokai +Blue", | |
| "workbench.sideBar.location": "right", | |
| "window.zoomLevel": 2, | |
| "breadcrumbs.enabled": false, | |
| "workbench.iconTheme": "vscode-icons", | |
| "telemetry.telemetryLevel": "off", | |
| "window.commandCenter": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| // breadcrumbs | |
| "breadcrumbs.enabled": false, | |
| // editor | |
| "editor.lineNumbers": "relative", | |
| "editor.guides.indentation": false, | |
| "editor.guides.bracketPairs": false, | |
| "editor.guides.bracketPairsHorizontal": false, | |
| "editor.guides.highlightActiveBracketPair": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 1.8, | |
| "javascript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "editor.rulers": [ | |
| 80, | |
| 120 | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Run the custom script whenever a branch is checked out | |
| "/Users/$USER/Library/Application Support/Code/User/update-copilot-branch-instructions.sh" | |
| # Check if the custom script executed successfully | |
| if [ $? -eq 0 ]; then | |
| # If the script was successful, print the success message | |
| echo "Successfully updated Copilot commit message generation instructions with the current Git branch name." | |
| else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "response_schema", | |
| "schema": { | |
| "type": "object", | |
| "additionalProperties": false, | |
| "required": [ | |
| "cliente", | |
| "mail_solicitante", | |
| "email_meta", | |
| "intencion", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "ConfirmationEmailPayload", | |
| "type": "object", | |
| "additionalProperties": false, | |
| "properties": { | |
| "subject": { | |
| "type": "string", | |
| "minLength": 1 | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "object", | |
| "properties": { | |
| "articles": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "headline": { | |
| "type": "string" |
NewerOlder