Skip to content

Instantly share code, notes, and snippets.

@apkd
Created September 30, 2019 12:48
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 apkd/56f73b26aa2277557c2d945f721993f5 to your computer and use it in GitHub Desktop.
Save apkd/56f73b26aa2277557c2d945f721993f5 to your computer and use it in GitHub Desktop.
vscode settings
{
"workbench.colorTheme": "Shape",
"workbench.settings.editor": "json",
"workbench.settings.useSplitJSON": true,
"editor.fontFamily": "Monoid",
"editor.fontSize": 13,
"editor.cursorStyle": "block",
"editor.accessibilitySupport": "off",
"editor.codeLens": false,
"csharp.referencesCodeLens.enabled": false,
"csharp.suppressDotnetRestoreNotification": true,
"csharp.suppressDotnetInstallWarning": true,
"workbench.activityBar.visible": false,
"workbench.enableExperiments": false,
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}${separator}vscode",
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "boundary",
"git.autofetch": true,
"editor.fontLigatures": true,
"window.zoomLevel": -2,
"terminal.integrated.fontFamily": "Monoid Retina",
"debug.console.fontFamily": "Monoid Retina",
"explorer.confirmDragAndDrop": false,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.hovers.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.mode.statusBar.enabled": false,
"gitlens.keymap": "none",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.fontSize": 13,
"explorer.confirmDelete": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"docomment.advanced": {
"cs": {
"property": {
"attributes": [
"summary",
]
}
}
},
"workbench.startupEditor": "newUntitledFile",
"editor.minimap.maxColumn": 48,
"copyCodeBlock.formats": [
{
"formatName": "default",
"codeBlockHeaderFormat": "🍉${workspaceFolderRelativePath}:${topLineNumber}${EOL}",
"codeBlockFooterFormat": "",
"codeLineFormat": "${LINENUMBER}: ${CODE}${EOL}",
"multipleSelectionCreateMultipleCodeBlocks": false,
"multipleSelectionsBoundalyMarkerFormat": "---${EOL}",
"forcePathSeparatorSlash": false,
"forceSpaceIndent": false
},
{
"formatName": "markdown",
"codeBlockHeaderFormat": "🍉`${workspaceFolderRelativePath}:${topLineNumber}`${EOL}```${languageId}${EOL}",
"codeBlockFooterFormat": "```${EOL}",
"codeLineFormat": "${CODE}${EOL}",
"multipleSelectionCreateMultipleCodeBlocks": false,
"multipleSelectionsBoundalyMarkerFormat": "---${EOL}",
"forcePathSeparatorSlash": true,
"forceSpaceIndent": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment