Skip to content

Instantly share code, notes, and snippets.

@rakkarage
Last active December 2, 2019 22:50
Show Gist options
  • Save rakkarage/b265edcb9ef1100fcf49b9caf7874953 to your computer and use it in GitHub Desktop.
Save rakkarage/b265edcb9ef1100fcf49b9caf7874953 to your computer and use it in GitHub Desktop.
Visual Studio Code Sync Settings Gist
{"lastUpload":"2019-12-02T22:50:44.036Z","extensionVersion":"v3.4.3"}
[
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "3.4.3"
},
{
"metadata": {
"id": "d0bfc4ab-1d3a-4487-8782-7cf6027b4fff",
"publisherId": "ms-vscode.csharp",
"publisherDisplayName": "ms-vscode"
},
"name": "csharp",
"publisher": "ms-vscode",
"version": "1.21.8"
},
{
"metadata": {
"id": "43335a8d-5929-408b-874a-65f08362642c",
"publisherId": "file-icons.file-icons",
"publisherDisplayName": "file-icons"
},
"name": "file-icons",
"publisher": "file-icons",
"version": "1.0.19"
},
{
"metadata": {
"id": "3792588c-3d35-442d-91ea-fe6a755e8155",
"publisherId": "mechatroner.rainbow-csv",
"publisherDisplayName": "mechatroner"
},
"name": "rainbow-csv",
"publisher": "mechatroner",
"version": "1.3.1"
},
{
"metadata": {
"id": "b0605276-f92b-4616-be91-ea11ec64dd1f",
"publisherId": "Unity.unity-debug",
"publisherDisplayName": "Unity"
},
"name": "unity-debug",
"publisher": "Unity",
"version": "2.7.2"
},
{
"metadata": {
"id": "daf8b44d-8aae-4da2-80c5-1f770219f643",
"publisherId": "DavidAnson.vscode-markdownlint",
"publisherDisplayName": "DavidAnson"
},
"name": "vscode-markdownlint",
"publisher": "DavidAnson",
"version": "0.32.0"
}
]
// Empty
[
{
"key": "alt+left",
"command": "workbench.action.quickInputBack",
"when": "inQuickOpen"
},
{
"key": "ctrl+alt+-",
"command": "-workbench.action.quickInputBack",
"when": "inQuickOpen"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+alt+-",
"command": "-workbench.action.navigateBack"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+shift+-",
"command": "-workbench.action.navigateForward"
}
]
{
"window.zoomLevel": 0,
"window.title": "${dirty}${rootName}",
"editor.insertSpaces": false,
"editor.fontFamily": "Ubuntu Mono",
"editor.fontSize": 20,
"editor.lineHeight": 20,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.minimap.showSlider": "always",
"editor.minimap.renderCharacters": false,
"editor.cursorBlinking": "expand",
"editor.renderWhitespace": "all",
"terminal.integrated.fontSize": 20,
"workbench.sideBar.location": "right",
"workbench.editor.openPositioning": "last",
"git.confirmSync": false,
"git.autofetch": true,
"files.autoSave": "afterDelay",
"files.associations": {
"*.asset": "yaml",
"*.controller": "yaml",
"*.fontSettings": "yaml",
"*.mat": "yaml",
"*.meta": "yaml",
"*.prefab": "yaml",
"*.unity": "yaml",
"*.asmdef": "json",
"*.ShaderGraph": "json"
},
"search.useGlobalIgnoreFiles": true,
"files.watcherExclude": {
"**/.git/**": true,
"**/node_modules/*/**": true,
"**/Logs/": true,
"**/Library/": true,
"Temp": true
},
// "files.exclude": {
// "**/*.meta": true,
// },
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true,
},
"editor.rulers": [
120
],
"workbench.colorCustomizations": {
"[Default Dark+]": {
"editor.lineHighlightBackground": "#3333",
},
"[Default Light+]": {
"editor.lineHighlightBackground": "#eee3"
}
},
"sync.gist": "b265edcb9ef1100fcf49b9caf7874953",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.forceDownload": false,
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"indentRainbow.ignoreErrorLanguages": [
"*"
],
"indentRainbow.colors": [
"rgba(230, 0, 0, .0333)",
// "#e60000",
"rgba(255, 102, 51, .0333)",
// "#ff6633",
"rgba(255, 204, 0, .0333)",
// "#ffcc00",
"rgba(255, 255, 51, .0333)",
// "#ffff33",
"rgba(153, 255, 102, .0333)",
// "#99ff66",
"rgba(0, 153, 0, .0333)",
// "#009900",
"rgba(0, 179, 230, .0333)",
// "#00b3e6",
"rgba(0, 0, 204, .0333)",
// "#0000cc",
"rgba(51, 0, 102, .0333)",
// "#330066",
"rgba(128, 0, 179, .0333)"
// "#8000b3"
],
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "rainbow1",
"settings": {
"foreground": "#e60000"
}
},
{
"scope": "keyword.rainbow2",
"settings": {
"foreground": "#ff6633"
}
},
{
"scope": "entity.name.function.rainbow3",
"settings": {
"foreground": "#ffcc00"
}
},
{
"scope": "comment.rainbow4",
"settings": {
"foreground": "#ffff33"
}
},
{
"scope": "string.rainbow5",
"settings": {
"foreground": "#99ff66"
}
},
{
"scope": "variable.parameter.rainbow6",
"settings": {
"foreground": "#009900"
}
},
{
"scope": "markup.bold.rainbow7",
"settings": {
"foreground": "#00b3e6"
}
},
{
"scope": "invalid.rainbow8",
"settings": {
"foreground": "#0000cc"
}
},
{
"scope": "rainbow9",
"settings": {
"foreground": "#330066"
}
},
{
"scope": "rainbow10",
"settings": {
"foreground": "#8000b3"
}
}
]
},
"editor.detectIndentation": false,
"debug.console.fontFamily": "Ubuntu Mono",
"workbench.list.openMode": "doubleClick",
"yaml.schemas": {
"file:///home/rakka/.vscode-insiders/extensions/atlassian.atlascode-1.2.1/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"debug.internalConsoleOptions": "neverOpen",
"javascript.implicitProjectConfig.experimentalDecorators": true,
"omnisharp.enableRoslynAnalyzers": true,
"window.newWindowDimensions": "inherit",
"sqltools.connections": [
{
"database": "/home/rakka/Data/code/Bagged/Bagged/Bagged.db",
"dialect": "SQLite",
"name": "Bagged"
}
],
"sqltools.useNodeRuntime": true,
"workbench.iconTheme": "file-icons",
"editor.renderControlCharacters": true,
"sync.forceUpload": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment