Last active
August 26, 2026 03:51
-
-
Save JorgeMGuimaraes/c27f54974df0d8bade8e416d96a66589 to your computer and use it in GitHub Desktop.
VS Code Settings
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
| //https://gist.github.com/JorgeMGuimaraes/c27f54974df0d8bade8e416d96a66589 | |
| { | |
| "terminal.integrated.env.linux": { | |
| "ANSIBLE_CONFIG": "${workspaceFolder}/ansible/ansible.cfg", | |
| "ANSIBLE_ROLES_PATH": "${workspaceFolder}/ansible/roles", | |
| }, | |
| "ansible.validation.lint.arguments": "-c ${workspaceFolder}/ansible/.ansible-lint", | |
| "files.associations": { | |
| "**/*.yml": "ansible", | |
| "**/*.yaml": "ansible" | |
| }, | |
| "editor.rulers": [ | |
| { | |
| "column": 72, | |
| "color": "#00FF0033" | |
| }, // Green with transparency for comments | |
| { | |
| "column": 80, | |
| "color": "#FF9900" | |
| }, // Sharp orange for main code bounds | |
| { | |
| "column": 120, | |
| "color": "#FF000088" | |
| } // Red warning line | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment