Skip to content

Instantly share code, notes, and snippets.

@marselester
Last active June 15, 2023 19:42
Show Gist options
  • Select an option

  • Save marselester/abcfd57afa9209a1b6f9b36adaf85140 to your computer and use it in GitHub Desktop.

Select an option

Save marselester/abcfd57afa9209a1b6f9b36adaf85140 to your computer and use it in GitHub Desktop.
vscode settings
{
"editor.fontSize": 14,
"editor.parameterHints": false,
"editor.autoClosingBrackets": false,
"editor.matchBrackets": false,
"editor.quickSuggestions": false,
"editor.renderLineHighlight": "none",
"editor.selectionHighlight": false,
"editor.scrollBeyondLastLine": false,
"editor.minimap.enabled": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.pyc": true
},
"go.lintTool": "gometalinter",
"debug.inlineValues": true,
"extensions.ignoreRecommendations": true,
"python.linting.pylintEnabled": false,
"python.formatting.provider": "",
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"workbench.startupEditor": "newUntitledFile",
"explorer.confirmDelete": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment