Skip to content

Instantly share code, notes, and snippets.

@Halkcyon
Last active September 11, 2018 04:17
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 Halkcyon/862efea9dc5ffa2eea6ad85b77421496 to your computer and use it in GitHub Desktop.
Save Halkcyon/862efea9dc5ffa2eea6ad85b77421496 to your computer and use it in GitHub Desktop.
{ /* vscode 1.27.1 */
"explorer.confirmDelete": false,
"liveshare.account": "",
"liveshare.accountProvider": "github",
"liveshare.nameTagVisibility": "Always",
"liveshare.showInStatusBar": "whileCollaborating",
"git.autofetch": true,
"git.confirmSync": false,
"git.defaultCloneDirectory": "C:\\repos\\",
"git.path": "C:\\Program Files\\Git\\cmd\\git.exe",
"git.promptToSaveFilesBeforeCommit": true,
"git.showPushSuccessNotification": true,
"powershell.debugging.createTemporaryIntegratedConsole": true,
/* Plaster, PSScriptAnalyzer, PowerShellEditorServices */
/* "powershell.developer.bundledModulesPath": "", */
"powershell.developer.editorServicesLogLevel": "Error",
"powershell.developer.editorServicesWaitForDebugger": true,
"powershell.helpCompletion": "Disabled",
"powershell.powerShellAdditionalExePaths": [
{
"versionName": "Windows PowerShell",
"exePath": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
},
{
"versionName": "Windows PowerShell (x86)",
"exePath": "C:\\Windows\\SysWOW64\\WindowsPowerShell\\v1.0\\powershell.exe"
},
{
"versionName": "PowerShell Core",
"exePath": "C:\\Program Files\\PowerShell\\6.0.1\\pwsh.exe"
}
],
"powershell.powerShellDefaultVersion": "Windows PowerShell",
"powershell.scriptAnalysis.settingsPath": "C:\\Users\\<USERNAME>\\Scripts\\PSScriptAnalyzerSettings.psd1",
"terminal.external.windowsExec": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.enableBell": true,
"terminal.integrated.fontFamily": "Source Code Pro",
"terminal.integrated.fontSize": 16,
"terminal.integrated.scrollback": 500,
"terminal.integrated.shellArgs.windows": ["-NoLogo"],
"workbench.colorTheme": "PowerShell ISE",
"workbench.commandPalette.history": 10,
"workbench.editor.labelFormat": "medium",
"workbench.editor.openPositioning": "last",
"workbench.enableExperiments": false,
"workbench.iconTheme": "vscode-icons",
"workbench.list.openMode": "doubleClick",
"workbench.panel.defaultLocation": "right",
"workbench.settings.editor": "json",
"workbench.settings.enableNaturalLanguageSearch": false,
"workbench.settings.settingsSearchTocBehavior": "hide",
"workbench.startupEditor": "newUntitledFile",
"workbench.statusBar.feedback.visible": false,
"workbench.tips.enabled": false,
"workbench.tree.horizontalScrolling": true,
"window.titleBarStyle": "custom",
"window.title": "${dirty}${separator}${activeEditorLong}${separator}${appName}",
"window.autoDetectHighContrast": false,
"editor.accessibilitySupport": "off",
"editor.cursorBlinking": "expand",
"editor.cursorStyle": "line-thin",
"editor.detectIndentation": false,
"editor.dragAndDrop": false,
"editor.find.autoFindInSelection": true,
"editor.fontFamily": "'Operator Mono Lig', 'Fira Code', 'Source Code Pro', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.fontWeight": "100",
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"editor.renderControlCharacters": true,
"editor.renderLineHighlight": "all",
"editor.renderWhitespace": "boundary",
"editor.rulers": [80, 115],
"editor.scrollBeyondLastLine": false,
"editor.showFoldingControls": "always",
"editor.snippetSuggestions": "bottom",
"editor.tabCompletion": true,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "italString",
"scope": [
"string.quoted.single.powershell",
],
"settings": {
"fontStyle": "italic"
}
}
]
},
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 115,
"editor.wrappingIndent": "deepIndent",
"extensions.ignoreRecommendations": true,
"extensions.showRecommendationsOnlyOnDemand": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 30000,
"files.defaultLanguage": "powershell",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"[powershell]": {
"files.encoding": "utf8bom",
},
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment