Skip to content

Instantly share code, notes, and snippets.

@condef5
Created April 25, 2018 13:25
Show Gist options
  • Save condef5/3255081de3c0888938cdb0e96d882c85 to your computer and use it in GitHub Desktop.
Save condef5/3255081de3c0888938cdb0e96d882c85 to your computer and use it in GitHub Desktop.
Editors config
{
"workbench.iconTheme": "vscode-great-icons",
"workbench.colorTheme": "Mirage",
"editor.fontFamily": "Fira Code, Roboto Mono, monospace",
"editor.lineHeight": 30,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\sysnative\\cmd.exe",
"terminal.integrated.shellArgs.windows": [
"/K",
"%CMDER_ROOT%/vendor/init.bat"
],
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"blade": "html"
},
"emmet.syntaxProfiles": {
"javascript": {
"attr_quotes": "single"
},
"javascriptreact": {
"attr_quotes": "single"
}
},
// "workbench.statusBar.visible": false,
"explorer.openEditors.visible": 0,
"workbench.activityBar.visible": false,
"editor.minimap.enabled": false,
"editor.codeLens": true,
"php-cs-fixer.onsave": true,
"php-cs-fixer.config": "C:\\Users\\condef5\\.vscode\\.php_cs",
"php-cs-fixer.executablePathWindows": "C:\\Users\\condef5\\AppData\\Roaming\\Composer\\vendor\\bin\\php-cs-fixer.bat",
// File extensions to be parsed by the Javascript parser
// "importCost.javascriptExtensions": [
// "\\.vue$"
// ],
"vetur.validation.script": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"editor.tabCompletion": true,
"editor.snippetSuggestions": "top",
// "gitlens.currentLine.enabled": false,
"files.trimTrailingWhitespace": true,
"emmet.triggerExpansionOnTab": true,
"emmet.extensionsPath": "C:\\Users\\condef5\\emmet",
"window.zoomLevel": 0,
"gitlens.keymap": "alternate",
"editor.tabSize": 4,
"editor.fontSize": 14,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"files.insertFinalNewline": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment