Skip to content

Instantly share code, notes, and snippets.

@lucasmaurice
Created July 26, 2023 20:03
Show Gist options
  • Save lucasmaurice/813c86537284d3b41695e24fc188d227 to your computer and use it in GitHub Desktop.
Save lucasmaurice/813c86537284d3b41695e24fc188d227 to your computer and use it in GitHub Desktop.
Basic VS Code config file.
{
"editor.formatOnSave": true,
"editor.inlineSuggest.enabled": true,
"editor.minimap.enabled": false,
"editor.suggestSelection": "first",
"explorer.confirmDragAndDrop": false,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"files.watcherExclude": {
"**/.tox/**": true
},
"git.suggestSmartCommit": false,
"python.formatting.autopep8Args": [
"--max-line-length=220"
],
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=220",
// "--ignore=E402,F841,F401,E302,E305",
],
"python.linting.mypyEnabled": false,
"python.linting.pylintEnabled": false,
"security.workspace.trust.untrustedFiles": "open",
"telemetry.telemetryLevel": "off",
"terminal.integrated.scrollback": 1000000000,
"terraform.languageServer.enable": true,
"github.copilot.enable": {
"*": true,
},
"markdown.extension.toc.levels": "1..2",
"workbench.startupEditor": "none",
"workbench.activityBar.visible": true,
"debug.openDebug": "openOnDebugBreak",
"editor.tabCompletion": "off",
"powershell.integratedConsole.focusConsoleOnExecute": true,
"files.defaultLanguage": "",
"workbench.colorTheme": "Default Dark+",
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",
"powershell.buttons.showPanelMovementButtons": false,
"editor.tabSize": 2,
"git.confirmSync": false,
"diffEditor.wordWrap": "off",
"diffEditor.ignoreTrimWhitespace": false,
"git.openRepositoryInParentFolders": "never",
"vs-kubernetes": {
"vscode-kubernetes.helm-path.linux": "/home/lmaurice/.local/state/vs-kubernetes/tools/helm/linux-amd64/helm",
"vscode-kubernetes.minikube-path.linux": "/home/lmaurice/.local/state/vs-kubernetes/tools/minikube/linux-amd64/minikube"
},
"redhat.telemetry.enabled": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment