Skip to content

Instantly share code, notes, and snippets.

@ErnestoBorio
Last active November 12, 2020 22:15
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 ErnestoBorio/82527ab5d48add23d9f69ce43fda6720 to your computer and use it in GitHub Desktop.
Save ErnestoBorio/82527ab5d48add23d9f69ce43fda6720 to your computer and use it in GitHub Desktop.
VSCode settings.json
{
"files.exclude": {},
"editor.rulers": [
120,
180
],
"workbench.colorCustomizations": {
"editorRuler.foreground": "#222222"
},
"editor.renameOnType": true,
"files.autoSave": "onFocusChange",
"editor.fontFamily": "Fira Code",
"editor.fontSize": 12,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "all",
"editor.multiCursorModifier": "ctrlCmd",
"explorer.confirmDelete": false,
"editor.autoClosingBrackets": "beforeWhitespace",
"editor.autoClosingQuotes": "beforeWhitespace",
"terminal.integrated.rendererType": "dom",
"editor.fontLigatures": true,
"editor.insertSpaces": false,
"search.useIgnoreFiles": false,
"editor.formatOnSave": true,
"[php]": {
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"foreground": "#5e5d5d"
}
},
{
"scope": "comment.block",
"settings": {
"foreground": "#00B000"
}
},
{
"scope": "keyword.operator",
"settings": {
"foreground": "#2d921f"
}
},
{
"scope": "source.go entity.name.function.go",
"settings": {
"foreground": "#15ff00",
"fontStyle": ""
}
}
]
},
"editor.cursorBlinking": "blink",
"breadcrumbs.enabled": true,
"window.zoomLevel": 0,
"python.analysis.openFilesOnly": false,
"terminal.integrated.macOptionIsMeta": true,
"git.autofetch": true,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.fontFamily": "\"Fira Code\"",
"scm.diffDecorations": "none",
"editor.renderLineHighlight": "gutter",
"editor.links": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.openEditors.visible": 1,
"explorer.autoReveal": false,
"editor.acceptSuggestionOnEnter": "smart",
"window.restoreWindows": "all",
"window.newWindowDimensions": "maximized",
"editor.detectIndentation": true,
"xdebugSettings": {
"max_children": 128,
"max_data": 512,
"max_depth": 3
},
"workbench.startupEditor": "newUntitledFile",
"extensions.ignoreRecommendations": true,
"explorer.confirmDragAndDrop": false,
"[go]": {
"editor.formatOnSave": false
},
"go.coverOnTestPackage": false,
"go.lintOnSave": "off",
"go.formatTool": "goimports",
"go.vetOnSave": "package",
"[plaintext]": {
"editor.renderIndentGuides": false
},
"editor.matchBrackets": "never",
"bracket-pair-colorizer-2.scopeLineRelativePosition": false,
"bracket-pair-colorizer-2.showVerticalScopeLine": false,
"bracket-pair-colorizer-2.showHorizontalScopeLine": false,
"debug.console.fontFamily": "Fira Code",
"kickassembler.kickAssPath": "/Users/petruza/Source/C64/extra/KickAssembler/KickAss.jar",
"kickassembler.assemblerJar": "/Users/petruza/Source/C64/extra/KickAssembler/KickAss.jar",
"kickassembler.javaRuntime": "/usr/bin/java",
"kickassembler.emulatorRuntime": "/Applications/Vice64/x64.app/Contents/MacOS/x64",
"kickassembler.debuggerRuntime": "/Users/petruza/Source/C64/extra/C64Debugger/C64 Debugger.app/Contents/MacOS/C64Debugger",
"kickassembler.outputDirectory": ".",
"kickassembler.javaAllowFileCreation": true,
"kickassembler.autoAssembleTrigger": "onSave only",
"kickass-c64.kickAssJar": "/Users/petruza/Source/Drean64/extra/KickAssembler/KickAss.jar",
"kickass-c64.c64DebuggerBin": "/Users/petruza/Source/C64/extra/C64Debugger/C64\\ Debugger.app/Contents/MacOS/C64Debugger",
"gitlens.hovers.currentLine.over": "line",
"gitlens.currentLine.enabled": false,
"subtleBrackets.parse": false,
"gitlens.codeLens.enabled": false,
"debug.onTaskErrors": "showErrors",
"problems.autoReveal": false,
"atari-dev-studio.application.configuration.latestVersion": "0.5.8",
"compile-hero.disable-compile-files-on-did-save-code": false,
"git.confirmSync": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"typescript.updateImportsOnFileMove.enabled": "always",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"godot_tools.editor_path": "/Applications/Godot.app/Contents/MacOS/Godot",
"[javascript]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment