Skip to content

Instantly share code, notes, and snippets.

@millken
Last active September 17, 2020 10:54
Show Gist options
  • Save millken/e9cb30403824983c83729708da05a57f to your computer and use it in GitHub Desktop.
Save millken/e9cb30403824983c83729708da05a57f to your computer and use it in GitHub Desktop.
VSCode's Settings - Syncing
[
{
"id": "azemoh.one-monokai",
"name": "one-monokai",
"publisher": "azemoh",
"version": "0.4.6"
},
{
"id": "be5invis.toml",
"name": "toml",
"publisher": "be5invis",
"version": "0.5.1"
},
{
"id": "bibhasdn.unique-lines",
"name": "unique-lines",
"publisher": "bibhasdn",
"version": "1.0.0"
},
{
"id": "bmewburn.vscode-intelephense-client",
"name": "vscode-intelephense-client",
"publisher": "bmewburn",
"version": "1.5.4"
},
{
"id": "crazywolf.smali",
"name": "smali",
"publisher": "crazywolf",
"version": "1.0.1"
},
{
"id": "Dart-Code.dart-code",
"name": "dart-code",
"publisher": "Dart-Code",
"version": "3.14.1"
},
{
"id": "Dart-Code.flutter",
"name": "flutter",
"publisher": "Dart-Code",
"version": "3.14.1"
},
{
"id": "eamodio.gitlens",
"name": "gitlens",
"publisher": "eamodio",
"version": "10.2.2"
},
{
"id": "golang.go",
"name": "go",
"publisher": "golang",
"version": "0.16.2"
},
{
"id": "HookyQR.beautify",
"name": "beautify",
"publisher": "HookyQR",
"version": "1.5.0"
},
{
"id": "iliazeus.vscode-hexdump",
"name": "vscode-hexdump",
"publisher": "iliazeus",
"version": "1.8.2"
},
{
"id": "Koihik.vscode-lua-format",
"name": "vscode-lua-format",
"publisher": "Koihik",
"version": "1.3.6"
},
{
"id": "kokororin.vscode-phpfmt",
"name": "vscode-phpfmt",
"publisher": "kokororin",
"version": "1.0.30"
},
{
"id": "MehediDracula.php-namespace-resolver",
"name": "php-namespace-resolver",
"publisher": "MehediDracula",
"version": "1.1.8"
},
{
"id": "mikestead.dotenv",
"name": "dotenv",
"publisher": "mikestead",
"version": "1.0.1"
},
{
"id": "ms-azuretools.vscode-docker",
"name": "vscode-docker",
"publisher": "ms-azuretools",
"version": "1.6.0"
},
{
"id": "MS-CEINTL.vscode-language-pack-zh-hans",
"name": "vscode-language-pack-zh-hans",
"publisher": "MS-CEINTL",
"version": "1.48.3"
},
{
"id": "ms-python.python",
"name": "python",
"publisher": "ms-python",
"version": "2020.8.109390"
},
{
"id": "ms-vscode.cpptools",
"name": "cpptools",
"publisher": "ms-vscode",
"version": "1.0.0"
},
{
"id": "nonoroazoro.syncing",
"name": "syncing",
"publisher": "nonoroazoro",
"version": "3.0.13"
},
{
"id": "spywhere.guides",
"name": "guides",
"publisher": "spywhere",
"version": "0.9.3"
},
{
"id": "Surendrajat.apklab",
"name": "apklab",
"publisher": "Surendrajat",
"version": "0.8.1"
},
{
"id": "trixnz.vscode-lua",
"name": "vscode-lua",
"publisher": "trixnz",
"version": "0.12.4"
},
{
"id": "TysonAndre.php-phan",
"name": "php-phan",
"publisher": "TysonAndre",
"version": "2.0.1"
},
{
"id": "vscode-icons-team.vscode-icons",
"name": "vscode-icons",
"publisher": "vscode-icons-team",
"version": "10.2.0"
},
{
"id": "xabikos.JavaScriptSnippets",
"name": "JavaScriptSnippets",
"publisher": "xabikos",
"version": "1.8.0"
},
{
"id": "yzhang.markdown-all-in-one",
"name": "markdown-all-in-one",
"publisher": "yzhang",
"version": "3.3.0"
}
]
{
"workbench.iconTheme": "vscode-icons",
"editor.renderIndentGuides": false,
"workbench.colorTheme": "One Monokai",
"editor.fontFamily": "'Source Code Variable', 'Fira Code','Droid Sans Mono', 'monospace', 'Droid Sans Fallback','Microsoft YaHei UI'",
"editor.fontSize": 18,
"editor.fontLigatures": true,//这个控制是否启用字体连字
"explorer.confirmDelete": false,
"go.useLanguageServer": true,
"git.autofetch": true,
"workbench.enableExperiments": false,
"update.showReleaseNotes": false,
"telemetry.enableTelemetry": false,
"workbench.settings.enableNaturalLanguageSearch": false,
"update.mode": "none",
"files.exclude": {
"**/.exe": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
},
"telemetry.enableCrashReporter": false,
"window.menuBarVisibility": "toggle",
"explorer.sortOrder": "modified",
"search.exclude": {
"**/vendor": true
},
"[php]": {
"editor.defaultFormatter": "kokororin.vscode-phpfmt"
},
"files.associations": {
"*.php": "php"
},
"git.enableSmartCommit": true,
"php.suggest.basic": false,
"http.proxy": "http://127.0.0.1:8118",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.lineHeight": 1.2,
"terminal.integrated.letterSpacing": 0.1,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "monospace",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"git.confirmSync": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment