Skip to content

Instantly share code, notes, and snippets.

@RhydianJenkins
Last active March 26, 2022 21:39
Show Gist options
  • Save RhydianJenkins/df8391497bff33f14156924c2d14f790 to your computer and use it in GitHub Desktop.
Save RhydianJenkins/df8391497bff33f14156924c2d14f790 to your computer and use it in GitHub Desktop.
Settings json file for my vs code setup.
{
"window.title": "${dirty} ${folderName}${separator}${activeEditorShort} ${dirty}",
"editor.fontFamily": "Cascadia Code, Fira Code",
"editor.fontLigatures": true,
"editor.formatOnSaveMode": "modifications",
"editor.cursorSurroundingLines": 8,
"editor.cursorSmoothCaretAnimation": true,
"editor.gotoLocation.alternativeTypeDefinitionCommand": "editor.action.goToTypeDefinition",
"editor.gotoLocation.multipleTypeDefinitions": "gotoAndPeek",
"editor.minimap.enabled": true,
"editor.rulers": [ 120 ],
"editor.bracketPairColorization.enabled": true,
"[php]": {
"editor.formatOnSave": false,
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[latex]": {
"editor.wordWrap": "on",
"editor.formatOnSave": true,
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.formatOnSave": true,
},
"files.trimTrailingWhitespace": true,
"breadcrumbs.enabled": true,
"turboConsoleLog.delimiterInsideMessage": "->",
"turboConsoleLog.logMessagePrefix": "",
"turboConsoleLog.quote": "`",
"turboConsoleLog.addSemicolonInTheEnd": true,
"turboConsoleLog.includeFileNameAndLineNum": false,
"php.validate.executablePath": "/usr/bin/php",
"intelephense.environment.phpVersion": "7.4.3",
"bracket-pair-colorizer-2.activeScopeCSS": [
"borderStyle : solid",
"borderWidth : 1px",
"borderColor : {color}",
"opacity: 0.5"
],
"bracket-pair-colorizer-2.colors": [
"Gold",
"Orchid",
"LightSkyBlue"
],
"yaml.maxItemsComputed": 20000,
"better-phpunit.docker.enable": true,
"better-phpunit.docker.command": "docker exec api",
"better-phpunit.phpunitBinary": "bin/phpunit",
"better-phpunit.commandSuffix": "-d memory_limit=-1",
"better-phpunit.docker.paths": {
"/var/www/hub-api": "/var/www/html/api"
},
"files.defaultLanguage": "${activeEditorLanguage}",
"errorLens.enabledDiagnosticLevels": ["error", "warning", "info"],
"errorLens.onSave": true,
"flowJiraCommitPrefix.pattern": "*",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment