Files
dotfiles/vscode-server/.vscode-server/data/Machine/settings.json
T
2026-06-26 19:53:35 -04:00

60 lines
1.6 KiB
JSON

{
"workbench.editor.useModal": "off",
"workbench.settings.editor": "json",
"workbench.settings.useSplitJSON": false,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 11,
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "Fira Code",
"terminal.integrated.profiles.linux": {
"grok": {
"path": "${userHome}/.grok/bin/grok",
"icon": "sparkle"
},
},
"terminal.integrated.defaultProfile.linux": "bash",
"workbench.iconTheme": "vscode-icons",
"files.exclude": {
"**/__pycache__": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true
},
"search.exclude": {
"**/__pycache__": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true,
"**/.grok": true,
"**/.grok/worktrees": true,
"**/.grok/sessions": true,
"**/.grok/logs": true,
"**/.cursor": true,
"**/.cline": true,
"**/.continue": true,
"**/.aider*": true,
"**/.codex": true,
"**/.windsurf": true,
"**/.codeium": true,
"**/.roo": true,
"**/.openclaw": true,
"**/.factory": true,
"**/.augment": true
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": false
},
"ruff.lineLength": 128,
"git.blame.editorDecoration.enabled": true,
"git.blame.editorDecoration.template": "${subject}, ${authorName} (${authorDateAgo})",
"git.blame.statusBarItem.enabled": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.renderWhitespace": "all",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true
}