Skip to content

Instantly share code, notes, and snippets.

@JorgeMGuimaraes
Last active August 26, 2026 03:51
Show Gist options
  • Select an option

  • Save JorgeMGuimaraes/c27f54974df0d8bade8e416d96a66589 to your computer and use it in GitHub Desktop.

Select an option

Save JorgeMGuimaraes/c27f54974df0d8bade8e416d96a66589 to your computer and use it in GitHub Desktop.
VS Code Settings
//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