Skip to content

Instantly share code, notes, and snippets.

@ghuntley
Created June 23, 2019 09:39
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 ghuntley/55df033996026c39cfe652a06ec7d4d0 to your computer and use it in GitHub Desktop.
Save ghuntley/55df033996026c39cfe652a06ec7d4d0 to your computer and use it in GitHub Desktop.
{
"recommendations": [
"aaron-bond.better-comments",
"alanz.vscode-hie-server",
"auchenberg.vscode-browser-preview",
"bbenoist.nix",
// "bazelbuild.vscode-bazel",
// "dbaeumer.vscode-eslint",
// "devondcarew.bazel-code",
// "dprogm.vscode-bazel-tools",
"christian-kohler.path-intellisense",
"CoenraadS.bracket-pair-colorizer",
"editorconfig.editorconfig",
"Equinusocio.vsc-material-theme",
"fabiospampinato.vscode-todo-plus",
"fatihacet.gitlab-workflow",
"formulahendry.auto-close-tag",
"formulahendry.auto-rename-tag",
"jebbs.plantuml",
// "mauve.terraform",
// "ms-vscode.csharp",
"ms-vscode.go",
// "ms-vscode.powershell",
"ms-python.python",
// "ms-vscode.cpptools",
// "ms-vscode-remote.vscode-remote-extensionpack",
// "ms-vsliveshare.vsliveshare-pack",
// "peterjausovec.vscode-docker",
"pkief.material-icon-theme",
"pnp.polacode",
"redhat.vscode-yaml",
"ritwickdey.LiveServer",
// "robbowen.synthwave-vscode",
"nopjmp.fairyfloss",
"streetsidesoftware.code-spell-checker",
"qezhu.gitlink",
"zhuangtongfa.Material-theme"
]
}
{
"cSpell.language": "en-GB",
"editor.tabSize": 4,
"files.autoSave": "afterDelay",
"files.watcherExclude": {
"bazel-*/*": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/vendor/*/**": true,
},
"git.autofetch": true,
"git.fetchOnPull": true,
"telemetry.enableTelemetry": false,
"search.exclude": {
"bazel-*/*": true,
"**/node_modules/*/**": true,
"vendor/**": true,
},
"plantuml.exportFormat": "svg",
"plantuml.exportOutDir": "./",
"plantuml.exportSubFolder": false,
"plantuml.exportConcurrency": 16,
"csharp.suppressDotnetInstallWarning": true,
"csharp.suppressDotnetRestoreNotification": true,
"workbench.colorTheme": "One Dark Pro",
"material-icon-theme.activeIconPack": "react",
"python.pythonPath": "dev-env/bin/python",
// "plantuml.render": "PlantUMLServer",
// "plantuml.server": "http://localhost:8080/",
// "workbench.colorCustomizations": {
// "statusBar.background": "#333",
// "statusBar.foreground": "#fff",
// "statusBar.noFolderBackground": "#333",
// "statusBar.noFolderForeground": "#fff"
// },
// Controls the font family.
"editor.fontFamily": "Operator Mono",
// Controls the line height. Use 0 to compute the lineHeight from the fontSize.
"editor.lineHeight": 24,
// Enables font ligatures
"editor.fontLigatures": true,
"todo.file.exclude": [
"**/gc-roots/**",
"**/node_modules/*/**",
"**/vendor/*/**"
],
"todo.timekeeping.created.enabled": true,
"todo.embedded.provider": "ag",
"editor.renderWhitespace": "boundary",
"files.exclude": {
"**/.bazel-cache": true
},
"editor.tabCompletion": "on",
"files.autoGuessEncoding": true,
"breadcrumbs.enabled": true,
"search.maintainFileSearchCache": true,
"search.showLineNumbers": true,
"terminal.integrated.copyOnSelection": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment