Last active
July 3, 2024 11:06
-
-
Save levpa/90929b333484e809ad6a1f958b08d1f8 to your computer and use it in GitHub Desktop.
Visual Studio Code settings
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
{ | |
"files.autoSave": "afterDelay", | |
"explorer.confirmDelete": false, | |
"git.autofetch": true, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.explorerKind": "external", | |
"terminal.integrated.defaultProfile.osx": "zsh", | |
"terminal.integrated.fontFamily": "MesloLGS NF", | |
"workbench.colorTheme": "Default Dark+", | |
"redhat.telemetry.enabled": false, | |
"explorer.confirmDragAndDrop": false, | |
"code-runner.executorMap": { | |
"python": "python3 -u" | |
}, | |
"yaml.schemas": { | |
"Kubernetes": [ | |
"k8s/*.yaml" | |
], | |
}, | |
"security.workspace.trust.untrustedFiles": "open", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment