Skip to content

Instantly share code, notes, and snippets.

@sryze
Last active April 23, 2023 17:15
Show Gist options
  • Save sryze/4ae550dafbf5c5195ee4a1106167f8ee to your computer and use it in GitHub Desktop.
Save sryze/4ae550dafbf5c5195ee4a1106167f8ee to your computer and use it in GitHub Desktop.
Visual Studio Code settings
// Place your settings in this file to overwrite the default settings
{
"update.mode": "manual",
"telemetry.telemetryLevel": "off",
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"editor.fontSize": 15,
"editor.fontFamily": "Source Code Pro Medium",
"editor.fontWeight": "normal",
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.rulers": [120],
"editor.trimAutoWhitespace": true,
"editor.wordWrap": "off",
"editor.autoClosingQuotes": "never",
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 80,
"editor.renderWhitespace": "none",
"editor.copyWithSyntaxHighlighting": false,
"editor.guides.indentation": true,
"editor.language.colorizedBracketPairs": [],
"explorer.autoReveal": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 0,
"window.restoreWindows": "none",
"window.zoomLevel": 0.25,
"window.newWindowDimensions": "inherit",
"window.openFilesInNewWindow": "on",
"window.menuBarVisibility": "toggle",
"window.openFoldersInNewWindow": "default",
// "workbench.list.openMode": "doubleClick",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.wrapTabs": true,
"search.maxResults": 50000,
"search.searchOnTypeDebouncePeriod": 10000,
"debug.onTaskErrors": "showErrors",
"debug.internalConsoleOptions": "openOnFirstSessionStart",
"python.linting.enabled": false,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.fontSize": 15,
"files.autoSave": "off",
"files.associations": {
"*.jsp": "jsp",
"*.meta": "python"
},
"extensions.ignoreRecommendations": true,
"git.autofetch": false,
"git.openRepositoryInParentFolders": "never",
"html.autoClosingTags": false,
"html.autoCreateQuotes": false,
"html.format.wrapLineLength": 0,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "aeschli.vscode-css-formatter"
},
"javascript.autoClosingTags": false,
"typescript.autoClosingTags": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"go.enableCodeLens": {
"references": false,
"runtest": true
},
"go.formatTool": "goimports",
"[go]": {
"editor.formatOnSave": true
},
"[sql]": {
"editor.defaultFormatter": "cymonk.sql-formatter"
},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false
},
"gitlens.keymap": "none",
"gitlens.advanced.telemetry.enabled": false,
"gitlens.telemetry.enabled": false,
"cSpell.checkLimit": 1000,
"cSpell.diagnosticLevel": "Warning",
"cSpell.enableFiletypes": [
"java",
"jsp",
"html",
"css",
"scss",
"js",
"jsx"
],
"cSpell.userWords": [
"apos",
"autoload",
"browserslist",
"clearfix",
"cmake",
"ctest",
"daterangepicker",
"dollarmax",
"dollarmin",
"geocoder",
"Hacktoberfest",
"helloworld",
"inputrc",
"jquery",
"jsdelivr",
"keymap",
"midast",
"multipart",
"nbsp",
"nvim",
"olark",
"onclick",
"preact",
"preload",
"pushcrew",
"readonly",
"scrollable",
"scrollbar",
"Servlet",
"signup",
"squircle",
"stylesheet",
"subheader",
"submodule",
"submodules",
"tmux",
"typeof",
"unminified",
"Unmount",
"uploader",
"vimrc",
"youtube"
],
"C_Cpp.intelliSenseCacheSize": 0,
"cmake.configureOnOpen": false,
"prettier.tabWidth": 4,
"eslint.enable": true,
"eslint.options": {
"extensions": [".js", ".jsx"]
},
"eslint.validate": ["javascript", "javascriptreact", "jsx", "html"],
"gopls": {
"experimentalWorkspaceModule": true,
},
"redhat.telemetry.enabled": false,
"shellcheck.executablePath": "E:/Tools/shellcheck/shellcheck.exe",
"remote.SSH.remotePlatform": {
"opitv": "linux"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment