Skip to content

Instantly share code, notes, and snippets.

@a-h
Last active October 21, 2018 20:02
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 a-h/0c0b27710a098aea615aa332773ded70 to your computer and use it in GitHub Desktop.
Save a-h/0c0b27710a098aea615aa332773ded70 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings
{
"go.coverOnSave": true,
"go.testOnSave": true,
"go.autocompleteUnimportedPackages": true,
"window.zoomLevel": 1,
"git.confirmSync": false,
"editor.renderWhitespace": "all",
"editor.minimap.enabled": false,
"workbench.colorCustomizations": {
"terminal.foreground": "#ffffff",
"foreground": "#ffffff",
"editor.background": "#000000",
"activityBar.background": "#000000",
"panel.background": "#000000",
"panel.border": "#222222",
"sideBar.background": "#000000",
"sideBar.foreground": "#999999",
"contrastBorder": "#222222",
"statusBar.background": "#222222",
"badge.background": "#222222",
"activityBarBadge.background": "#444444",
"editorSuggestWidget.background": "#000000",
"editorSuggestWidget.selectedBackground": "#444444",
"editorHoverWidget.background": "#000000"
},
"workbench.iconTheme": null,
"files.associations": {
"*.tf": "terraform"
},
"terraform.path": "/usr/local/bin/terraform",
"git.autofetch": true,
"go.vetOnSave": "workspace",
"editor.folding": false,
"editor.hover.delay": 100,
"editor.tabSize": 2,
"workbench.editor.showIcons": false,
"workbench.editor.tabCloseButton": "off",
"workbench.activityBar.visible": false,
"explorer.decorations.badges": false,
"explorer.decorations.colors": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"variable",
"constant",
"variable.parameter",
""
],
"settings": {
"foreground": "#ffffff"
}
},
{
"scope": [
"constant.numeric"
],
"settings": {
"foreground": "#e2ffd2"
}
},
{
"scope": [
"keyword"
],
"settings": {
"foreground": "#74bdf9"
}
},
{
"scope": [
"entity.name.function"
],
"settings": {
"foreground": "#ffffc4"
}
},
{
"scope": [
"storage.type.string.go",
"storage.type.boolean.go",
"entity.name.type",
],
"settings": {
"foreground": "#66ffe0"
}
},
{
"scope": [
"keyword.control",
],
"settings": {
"foreground": "#ffb1f9"
}
},
{
"scope": [
"support.function",
"constant.language",
],
"settings": {
"foreground": "#67bbff"
}
},
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment