Last active
November 13, 2019 06:13
-
-
Save aputs/cd71508c1724b1d726d986b6a33e7be8 to your computer and use it in GitHub Desktop.
osx vscode settings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terraform.indexing": { | |
"enabled": true, | |
"liveIndexing": false, | |
"delay": 500, | |
"exclude": [ | |
".terraform/**/*", | |
"**/.terraform/**/*", | |
"**/bazel-**/*" | |
] | |
}, | |
"terraform.languageServer": { | |
"enabled": false, | |
"args": [] | |
}, | |
"terminal.integrated.shell.linux": "/bin/zsh", | |
"window.zoomLevel": 0, | |
"workbench.colorTheme": "Material Theme Palenight High Contrast", | |
"editor.minimap.enabled": false, | |
"workbench.sideBar.location": "left", | |
"workbench.startupEditor": "newUntitledFile", | |
"python.jediEnabled": false, | |
"python.dataScience.askForKernelRestart": false, | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#E57373", | |
"list.activeSelectionForeground": "#E57373", | |
"list.inactiveSelectionForeground": "#E57373", | |
"list.highlightForeground": "#E57373", | |
"scrollbarSlider.activeBackground": "#E5737350", | |
"editorSuggestWidget.highlightForeground": "#E57373", | |
"textLink.foreground": "#E57373", | |
"progressBar.background": "#E57373", | |
"pickerGroup.foreground": "#E57373", | |
"tab.activeBorder": "#E57373", | |
"notificationLink.foreground": "#E57373", | |
"editorWidget.resizeBorder": "#E57373", | |
"editorWidget.border": "#E57373", | |
"settings.modifiedItemIndicator": "#E57373", | |
"settings.headerForeground": "#E57373", | |
"panelTitle.activeBorder": "#E57373", | |
"breadcrumb.activeSelectionForeground": "#E57373", | |
"menu.selectionForeground": "#E57373", | |
"menubar.selectionForeground": "#E57373", | |
"editor.findMatchBorder": "#E57373", | |
"selection.background": "#E5737340" | |
}, | |
"yaml.customTags": [ | |
"!And", | |
"!If", | |
"!Not", | |
"!Equals", | |
"!Or", | |
"!FindInMap sequence", | |
"!Base64", | |
"!Cidr", | |
"!Ref", | |
"!Sub", | |
"!GetAtt", | |
"!GetAZs", | |
"!ImportValue", | |
"!Select", | |
"!Select sequence", | |
"!Split", | |
"!Join sequence" | |
], | |
"yaml.format.enable": true, | |
"materialTheme.accent": "Red", | |
"workbench.iconTheme": "material-icon-theme", | |
"python.dataScience.sendSelectionToInteractiveWindow": false, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 14 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment