Skip to content

Instantly share code, notes, and snippets.

@gsscoder
Last active August 19, 2020 15:39
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 gsscoder/79baaaca35fd0c87609d7370e35f376d to your computer and use it in GitHub Desktop.
Save gsscoder/79baaaca35fd0c87609d7370e35f376d to your computer and use it in GitHub Desktop.
VSCode User Settings
{
"terminal.integrated.rendererType": "dom",
"python.pythonPath": "/Users/coder/.pyenv/shims/python",
"window.zoomLevel": 0,
"workbench.startupEditor": "none",
"[python]": {
"editor.rulers": [
72, 79
],
},
"[csharp]": {
"editor.rulers": [
100
],
},
"[powershell]": {
"editor.rulers": [
120
],
},
"[typescript]": {
"editor.rulers": [
120
],
},
"[typescriptreact]": {
"editor.rulers": [
120
],
},
"files.associations": {
"*.lfe": "lisp"
},
"workbench.colorCustomizations": {
"editorRuler.foreground": "#cc6600"
},
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.renderWhitespace": "all",
"editor.tokenColorCustomizations": {
"semanticTokenColorCustomizations": true
},
"window.restoreWindows": "none",
"terminal.integrated.fontFamily": "Consolas",
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 1,
"projectManager.sortList": "Recent",
"projectManager.removeCurrentProjectFromList": false,
"editor.codeLens": false,
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"task.autoDetect": "off",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.minimap.enabled": true,
"workbench.colorTheme": "Night Owl (No Italics)",
"diffEditor.ignoreTrimWhitespace": true,
"tabnine.experimentalAutoImports": true,
"FSharp.useSdkScripts": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment