Skip to content

Instantly share code, notes, and snippets.

@nissicreative
Created March 24, 2021 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nissicreative/42be0d82fb1a8616a0b7a8afed78015a to your computer and use it in GitHub Desktop.
Save nissicreative/42be0d82fb1a8616a0b7a8afed78015a to your computer and use it in GitHub Desktop.
My Visual Studio Code Settings
{
"workbench.colorTheme": "Cobalt2",
"workbench.iconTheme": "vscode-icons",
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 16,
"editor.lineHeight": 28,
"editor.fontLigatures": true,
"editor.formatOnPaste": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.wordWrap": "on",
"editor.linkedEditing": true,
"editor.formatOnSave": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"git.autofetch": true,
// Emmet
"emmet.syntaxProfiles": {
"javascript": "html"
},
"emmet.triggerExpansionOnTab": true,
// Prettier
"prettier.configPath": "~/.prettierrc",
"prettier.useEditorConfig": false,
// HTML
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// JavaScript
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"javascript.format.enable": false,
"json.schemas": [],
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
// Vue
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// "vetur.format.defaultFormatter.html": "prettier",
// "vetur.format.enable": false,
"vetur.validation.templateProps": true,
// PHP
"[php]": {
"editor.defaultFormatter": "junstyle.php-cs-fixer"
},
"intelephense.phpdoc.classTemplate": {
"summary": "$1",
"tags": [
"@package ${1:$SYMBOL_NAMESPACE}"
]
},
"php-cs-fixer.config": ".php_cs;.php_cs.dist;~/.php_cs",
"php-cs-fixer.onsave": true,
"phpConstructor.visibility": "public",
// Blade
"[blade]": {
"editor.formatOnSave": true,
},
"bladeFormatter.format.indentSize": 2,
"bladeFormatter.format.wrapLineLength": 0,
// Atlassian
"yaml.schemas": {
"file:///Users/mike/.vscode/extensions/atlassian.atlascode-2.8.6/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"atlascode.jira.enabled": false,
// Move These :)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment