Files
dotfiles/vscode/.config/Code/User/settings.json
2026-03-26 23:53:32 +02:00

59 lines
1.6 KiB
JSON

{
"workbench.colorTheme": "ZED One Theme Dark",
"workbench.startupEditor": "none",
"workbench.editor.splitInGroupLayout": "vertical",
"workbench.editor.wrapTabs": true,
// editor
"editor.fontFamily": "'IBM Plex Mono', 'FiraCode', 'DejaVu Sans Mono', monospace",
"editor.fontWeight": "500",
"editor.fontSize": 17,
"editor.minimap.enabled": false,
"editor.inlayHints.enabled": "on",
// terminal
"terminal.integrated.fontSize": 15.5,
"debug.console.fontSize": 15.5,
// git
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.openRepositoryInParentFolders": "always",
// rust
"rust-analyzer.checkOnSave": true,
// svelte
"svelte.enable-ts-plugin": true,
// claude code
"claudeCode.preferredLocation": "panel",
"claudeCode.useTerminal": true,
// misc
"extensions.ignoreRecommendations": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"diffEditor.ignoreTrimWhitespace": false,
"security.workspace.trust.untrustedFiles": "open",
"lldb.suppressUpdateNotifications": true,
"dotenv.enableAutocloaking": false,
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
"files.associations": {
".env*": "dotenv"
},
"errorLens.enabledDiagnosticLevels": ["error", "warning", "info", "hint"],
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tokenColorCustomizations": {
"textMateRules": []
}
}