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.

Revisions

  1. marselester revised this gist Jun 15, 2023. 1 changed file with 15 additions and 12 deletions.
    27 changes: 15 additions & 12 deletions vscode.json
    Original file line number Diff line number Diff line change
    @@ -1,20 +1,21 @@
    {
    "editor.fontSize": 14,
    "editor.fontSize": 16,
    "editor.autoClosingBrackets": "never",
    "editor.matchBrackets": "never",
    "editor.quickSuggestions": false,
    "editor.quickSuggestions": {
    "comments": "off",
    "strings": "off",
    "other": "off"
    },
    "editor.renderLineHighlight": "none",
    "editor.selectionHighlight": false,
    "editor.scrollBeyondLastLine": false,
    "editor.minimap.enabled": false,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.snippetSuggestions": "top",
    "editor.formatOnPaste": true,
    "editor.autoClosingQuotes": "never",
    "editor.autoSurround": "never",
    "editor.codeActionsOnSave": [
    "editor.action.formatDocument"
    ],
    "editor.wordWrap": "on",
    "files.trimTrailingWhitespace": true,
    "files.trimFinalNewlines": true,
    "files.insertFinalNewline": true,
    @@ -24,12 +25,14 @@
    "**/*.pyc": true
    },
    "go.formatTool": "goimports",
    "go.useLanguageServer": true,
    "window.zoomLevel": 1,
    "extensions.ignoreRecommendations": true,
    "workbench.colorTheme": "Visual Studio Dark",
    "workbench.startupEditor": "newUntitledFile",
    "telemetry.enableCrashReporter": false,
    "telemetry.enableTelemetry": false,
    "update.showReleaseNotes": false
    "telemetry.telemetryLevel":"off",
    "update.showReleaseNotes": false,
    "go.toolsManagement.autoUpdate": true,
    "window.zoomLevel": 3,
    "go.survey.prompt": false,
    "go.lintOnSave": "off",
    "audioCues.lineHasError": "off",
    "audioCues.volume": 10
    }
  2. marselester revised this gist Oct 28, 2020. 1 changed file with 18 additions and 13 deletions.
    31 changes: 18 additions & 13 deletions vscode.json
    Original file line number Diff line number Diff line change
    @@ -1,13 +1,20 @@
    {
    "editor.fontSize": 14,
    "editor.parameterHints": false,
    "editor.autoClosingBrackets": false,
    "editor.matchBrackets": false,
    "editor.autoClosingBrackets": "never",
    "editor.matchBrackets": "never",
    "editor.quickSuggestions": false,
    "editor.renderLineHighlight": "none",
    "editor.selectionHighlight": false,
    "editor.scrollBeyondLastLine": false,
    "editor.minimap.enabled": false,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.snippetSuggestions": "top",
    "editor.formatOnPaste": true,
    "editor.autoClosingQuotes": "never",
    "editor.autoSurround": "never",
    "editor.codeActionsOnSave": [
    "editor.action.formatDocument"
    ],
    "files.trimTrailingWhitespace": true,
    "files.trimFinalNewlines": true,
    "files.insertFinalNewline": true,
    @@ -16,15 +23,13 @@
    "**/.DS_Store": true,
    "**/*.pyc": true
    },
    "go.lintTool": "gometalinter",
    "debug.inlineValues": true,
    "go.formatTool": "goimports",
    "go.useLanguageServer": true,
    "window.zoomLevel": 1,
    "extensions.ignoreRecommendations": true,
    "python.linting.pylintEnabled": false,
    "python.formatting.provider": "",
    "sublimeTextKeymap.promptV3Features": true,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.snippetSuggestions": "top",
    "editor.formatOnPaste": true,
    "workbench.colorTheme": "Visual Studio Dark",
    "workbench.startupEditor": "newUntitledFile",
    "explorer.confirmDelete": false
    }
    "telemetry.enableCrashReporter": false,
    "telemetry.enableTelemetry": false,
    "update.showReleaseNotes": false
    }
  3. marselester renamed this gist Apr 4, 2018. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  4. marselester created this gist Apr 4, 2018.
    30 changes: 30 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,30 @@
    {
    "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
    }