Skip to content

Instantly share code, notes, and snippets.

@boltex
Created June 21, 2020 17:19
Show Gist options
  • Save boltex/57ab6c814253dc538a55e81ad2c7a72a to your computer and use it in GitHub Desktop.
Save boltex/57ab6c814253dc538a55e81ad2c7a72a to your computer and use it in GitHub Desktop.
{
// -------------------------------------------- WINDOW
"window.zoomLevel": 2,
// -------------------------------------------- EDITOR
"editor.fontSize": 15,
//"editor.formatOnPaste": true,
"editor.parameterHints.enabled": true,
"editor.selectionClipboard": false, // DOES NOT WORK!
"editor.formatOnSave": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "selection",
"editor.fontLigatures": true,
"editor.fontFamily": "Fira Code iScript",
"editor.fontWeight": "400",
"editor.fastScrollSensitivity": 10,
// Cursor
"editor.cursorStyle": "line",
"editor.cursorBlinking": "blink",
"editor.cursorWidth": 3,
"editor.cursorSmoothCaretAnimation": false,
// MINIMAP
"editor.minimap.enabled": true,
"editor.minimap.showSlider": "always",
"editor.minimap.scale": 1,
"editor.minimap.maxColumn": 120,
"editor.minimap.size": "fit",
"editor.rulers": [
{
"column": 80,
"color": "#a5350820"
},
{
"column": 88,
"color": "#eb191920"
},
{
"column": 96,
"color": "#f3181830"
}
],
// -------------------------------------------- WORKBENCH
"workbench.settings.editor": "json",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.closeEmptyGroups": false,
"workbench.colorCustomizations": {
"editorCursor.background": "#ff2a2aff",
"editorCursor.foreground": "#aeffae59",
"minimap.background": "#27282240"
// "statusBar.background": "#000000ff"
},
// -------------------------------------------- FILES
"files.trimTrailingWhitespace": true,
"workbench.startupEditor": "newUntitledFile",
// -------------------------------------------- [PYTHON]
"python.formatting.provider": "autopep8",
"python.formatting.autopep8Args": [
"--max-line-length",
"120",
"--experimental"
],
"[python]": {
"editor.formatOnPaste": false
},
// -------------------------------------------- [JSONC]
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
// -------------------------------------------- [TYPESCRIPT]
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
// -------------------------------------------- OTHERS
"git.enableSmartCommit": true,
"explorer.confirmDelete": false,
"git.confirmSync": false,
"git.autofetch": true,
"prettier.printWidth": 120,
"gitlens.codeLens.authors.enabled": false,
"banner-comments.h1": "Colossal",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"gitlens.hovers.currentLine.over": "line",
"gitlens.menus": {
"editor": {
"blame": false,
"clipboard": true,
"compare": true,
"details": false,
"history": false,
"remote": false
},
"editorGroup": {
"blame": true,
"compare": false
},
"editorTab": {
"clipboard": true,
"compare": true,
"history": true,
"remote": true
},
"explorer": {
"clipboard": true,
"compare": true,
"history": true,
"remote": true
},
"scmGroup": {
"compare": true,
"openClose": true,
"stash": true,
"stashInline": true
},
"scmItem": {
"clipboard": true,
"compare": true,
"history": true,
"remote": true,
"stash": true
}
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"gitlens.codeLens.recentChange.enabled": false,
"cSpell.userWords": [
"ATFILE",
"Affordance",
"Amodio",
"Asis",
"Backquote",
"Integ",
"Integ's",
"PNODE",
"PYTHONPATH",
"Robb",
"Synthwave",
"TCPIP",
"Unmark",
"VSIX",
"Valleyfield",
"Wilkie",
"activitybar",
"asyncio",
"boltex",
"bufferutil",
"cfam",
"cffm",
"cplusplus",
"debounced",
"debouncing",
"dehoist",
"delims",
"eamodio",
"eamodio's",
"fadein",
"gitlens",
"hasbin",
"heatmap",
"herodevs",
"killcolor",
"leoapp",
"leobody",
"leobridge",
"leobridgeserver",
"leoeditor",
"leoflexx",
"leointeg",
"leointegration",
"leox",
"miniconda",
"minmax",
"nanosecs",
"nocolor",
"nosent",
"nowrap",
"pagewidth",
"preload",
"rrggbb",
"scrollbar",
"scroller",
"serializable",
"sitecustomize",
"syntaxing",
"tabindex",
"tabwidth",
"testparam",
"treeview",
"undos",
"unmarks",
"unregister",
"visualstudio",
"vitalije",
"vnode",
"vsce",
"vscode's",
"websockets",
"webview",
"webviews",
"yesno"
],
"todo-tree.highlights.enabled": false,
"html.format.wrapLineLength": 140,
"html.format.wrapAttributes": "force-aligned",
"scm.alwaysShowProviders": true,
"diffEditor.ignoreTrimWhitespace": false,
"indentRainbow.colors": [
"rgba(32,32,32,0.05)",
"rgba(32,32,32,0.1)",
"rgba(32,32,32,0.15)",
"rgba(32,32,32,0.2)",
"rgba(32,32,32,0.25)",
"rgba(32,32,32,0.3)",
"rgba(32,32,32,0.35)",
"rgba(32,32,32,0.4)",
"rgba(32,32,32,0.45)",
"rgba(32,32,32,0.5)",
"rgba(32,32,32,0.55)",
"rgba(32,32,32,0.6)"
],
"vsicons.dontShowNewVersionMessage": true,
"todo-tree.tree.showScanModeButton": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"clock.dateFormat": "HH:MM Z",
"git-graph.showStatusBarItem": false,
"workbench.colorTheme": "Monokai",
"printcode.paperSize": "letter",
"printcode.fontSize": 6,
"printcode.disableTelemetry": true,
"errorLens.exclude": [
"^This may be converted"
],
"keyboard.dispatch": "keyCode",
"leoIntegration.statusBarString": "Leo",
"leoIntegration.defaultReloadIgnore": "yes-all",
"githubIssues.queries": [
{
"label": "My Issues",
"query": "default"
},
{
"label": "Created Issues",
"query": "author:${user} state:open repo:${owner}/${repository} sort:updated-desc"
}
],
"python.languageServer": "Microsoft"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment