1
0
Fork 0
env/.config/Code/User/settings.json

98 lines
3.1 KiB
JSON

{
"window.autoDetectColorScheme": true,
"window.titleBarStyle": "custom",
"workbench.sideBar.location": "right",
"workbench.preferredDarkColorTheme": "Solarized Dark",
"workbench.preferredLightColorTheme": "Solarized Light",
"workbench.colorTheme": "Solarized Light",
"workbench.colorCustomizations": {
"editorInlayHint.background": "#88888811",
"editorInlayHint.foreground": "#88888899"
},
"workbench.startupEditor": "none",
"terminal.integrated.scrollback": 10000,
"terminal.integrated.smoothScrolling": true,
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace",
"editor.inlayHints.fontSize": 12,
"editor.lineHeight": 1.3,
"editor.minimap.showSlider": "always",
"editor.minimap.enabled": false,
"editor.rulers": [80],
"editor.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": "on",
"files.autoSaveDelay": 10000,
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true
},
"vim.normalModeKeyBindings": [
{
"before": ["K"],
"commands": ["editor.action.showHover"]
},
{
"before": ["<space>", "r", "f"],
"commands": ["fileutils.renameFile"]
},
{
"before": ["<space>", "f"],
"commands": ["editor.action.formatDocument"]
},
{
"before": ["<space>", "b"],
"commands": [
"workbench.action.toggleSidebarVisibility"
//"workbench.files.action.focusFilesExplorer",
]
},
{
"before": ["<space>", "$"],
"commands": ["terminal.focus"]
}
],
"redhat.telemetry.enabled": false,
"gitlens.statusBar.enabled": false,
"docker.containers.label": "ContainerName",
"docker.containers.description": ["Image", "Status"],
"[python]": {
"editor.formatOnType": true,
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.analysis.typeCheckingMode": "strict",
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.inlayHints.pytestParameters": true,
"go.inlayHints.assignVariableTypes": true,
"go.inlayHints.compositeLiteralFields": true,
"go.inlayHints.compositeLiteralTypes": true,
"go.inlayHints.constantValues": true,
"go.inlayHints.rangeVariableTypes": true,
"go.coverageDecorator": {
"coveredHighlightColor": "rgba(64,128,64,0.1)",
"uncoveredHighlightColor": "rgba(128,64,64,0.1)",
"coveredBorderColor": "rgba(64,128,64,0.1)",
"uncoveredBorderColor": "rgba(128,64,64,0.1)",
"coveredGutterStyle": "slashgreen",
"uncoveredGutterStyle": "slashred"
},
"go.coverOnSave": true,
"powermode.enabled": true,
"powermode.shake.enabled": false,
"powermode.explosions.customExplosions": [
"/home/ambrose/Documents/sparkles.gif"
],
"powermode.explosions.maxExplosions": 1,
"powermode.explosions.frequency": 1,
"powermode.explosions.backgroundMode": "mask",
"powermode.combo.location": "off",
"gitlens.plusFeatures.enabled": false,
"go.lintTool": "golangci-lint",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"window.commandCenter": false
}