Last active
April 1, 2019 11:58
-
-
Save Halkcyon/ec35ac04e2d81d1a253ba634ca958472 to your computer and use it in GitHub Desktop.
vscode setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"update.enableWindowsBackgroundUpdates": true, | |
"update.mode": "default", | |
"update.showReleaseNotes": false, | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"powershell.codeFolding.enable": true, | |
"powershell.codeFolding.showLastLine": false, | |
"powershell.codeFormatting.alignPropertyValuePairs": true, | |
"powershell.codeFormatting.ignoreOneLineBlock": false, | |
"powershell.codeFormatting.newLineAfterCloseBrace": true, | |
"powershell.codeFormatting.newLineAfterOpenBrace": true, | |
"powershell.codeFormatting.openBraceOnSameLine": true, | |
"powershell.codeFormatting.preset": "Custom", | |
"powershell.codeFormatting.whitespaceAfterSeparator": true, | |
"powershell.codeFormatting.whitespaceAroundOperator": true, | |
"powershell.codeFormatting.whitespaceBeforeOpenBrace": false, | |
"powershell.codeFormatting.whitespaceBeforeOpenParen": false, | |
"powershell.debugging.createTemporaryIntegratedConsole": true, | |
"powershell.developer.editorServicesLogLevel": "Error", | |
"powershell.enableProfileLoading": true, | |
"powershell.helpCompletion": "Disabled", | |
"powershell.integratedConsole.focusConsoleOnExecute": true, | |
"powershell.integratedConsole.showOnStartup": false, | |
"powershell.powerShellAdditionalExePaths": [{ | |
"versionName": "Core Preview", | |
"exePath": "C:\\Program Files\\PowerShell\\6-preview\\pwsh.exe" | |
}, { | |
"versionName": "Core", | |
"exePath": "C:\\Program Files\\PowerShell\\6\\pwsh.exe" | |
}, { | |
"versionName": "Windows", | |
"exePath": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" | |
}], | |
"powershell.powerShellDefaultVersion": "Windows", | |
"powershell.powerShellExePath": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"powershell.scriptAnalysis.enable": true, | |
"powershell.sideBar.CommandExplorerVisibility": false, | |
"powershell.startAutomatically": true, | |
"powershell.useX86Host": false, | |
"editor.accessibilitySupport": "off", | |
"editor.codeInsets": true, | |
"editor.dragAndDrop": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.maxTokenizationLineLength": 10000, | |
"editor.renderControlCharacters": true, | |
"editor.renderWhitespace": "boundary", | |
"editor.rulers": [80, 115], | |
"editor.scrollBeyondLastLine": false, | |
"editor.showFoldingControls": "always", | |
"editor.smoothScrolling": true, | |
"editor.cursorBlinking": "expand", | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.cursorWidth": 2, | |
"editor.find.addExtraSpaceOnTop": false, | |
"editor.find.autoFindInSelection": true, | |
"editor.fontFamily": "'Fira Code', monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 16, | |
"editor.formatOnPaste": true, | |
"editor.minimap.enabled": false, | |
"files.autoGuessEncoding": false, | |
"files.defaultLanguage": "powershell", | |
"files.enableTrash": false, | |
"[powershell]": { | |
"files.encoding": "utf8bom" | |
}, | |
"files.eol": "\r\n", | |
"files.hotExit": "onExitAndWindowClose", | |
"files.insertFinalNewline": true, | |
"files.maxMemoryForLargeFilesMB": 2048, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"workbench.enableExperiments": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.colorTheme": "PowerShell ISE", | |
"workbench.iconTheme": "vs-seti", | |
"workbench.sideBar.location": "right", | |
"breadcrumbs.enabled": true, | |
"workbench.editor.highlightModifiedTabs": true, | |
"workbench.settings.editor": "json", | |
"workbench.settings.openDefaultKeybindings": true, | |
"workbench.settings.openDefaultSettings": true, | |
"workbench.settings.useSplitJSON": true, | |
"window.autoDetectHighContrast": false, | |
"window.title": "${dirty}${activeEditorLong}${separator}${appName}", | |
"explorer.confirmDelete": false, | |
"explorer.enableDragAndDrop": false, | |
"search.showLineNumbers": true, | |
"search.usePCRE2": true, | |
"debug.allowBreakpointsEverywhere": true, | |
"scm.alwaysShowActions": true, | |
"extensions.ignoreRecommendations": true, | |
"extensions.showRecommendationsOnlyOnDemand": true, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.enableBell": true, | |
"terminal.integrated.fontFamily": "Iosevka Term SS09", | |
"terminal.integrated.fontSize": 18, | |
"terminal.integrated.windowsEnableConpty": true, | |
"python.analysis.logLevel": "Warning", | |
"python.dataScience.enabled": false, | |
"python.jediEnabled": false, | |
"python.linting.pep8Enabled": true, | |
"python.linting.pylintEnabled": false, | |
"python.unitTest.unittestEnabled": true, | |
"omnisharp.path": "latest" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment