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
{ | |
// Disable telemetry | |
"telemetry.telemetryLevel": "off", | |
"redhat.telemetry.enabled": false, | |
// Theming | |
"workbench.colorTheme": "Tokyo Night", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.codeLensFontSize": 13, | |
"editor.fontSize": 15, | |
"editor.suggestFontSize": 15, |
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
#!/bin/bash | |
# For installation on your machine | |
# sh -c "$(curl https://gist.githubusercontent.com/Applelo/d105a35099d68783bef87689bf11843e/raw/c8050eb0105059e9d48cf60c91a4b7bdecfdcef2/docker-nfs-catalina.sh)" | |
OS=`uname -s` | |
if [ $OS != "Darwin" ]; then | |
echo "This script is OSX-only. Please do not run it on any other Unix." | |
exit 1 |