Files
dotfiles/vscode-server/.vscode-server/data/Machine/settings.json
T
2026-06-26 22:05:27 -04:00

84 lines
2.4 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",
"terminal.integrated.inheritEnv": true,
"vsicons.dontShowNewVersionMessage": true,
"editor.minimap.enabled": false,
"workbench.iconTheme": "catppuccin-mocha",
"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,
"files.autoSave": "afterDelay",
"telemetry.feedback.enabled": true,
"[properties]": {
"editor.tabSize": 2
},
"[shellscript]": {
"editor.defaultColorDecorators": "never",
"editor.tabSize": 2,
"files.eol": "\n"
},
"projectManager.showProjectNameInStatusBar": true,
"workbench.colorTheme": "Catppuccin Mocha",
"catppuccin.accentColor": "blue",
// use your accent (pink) on the statusBar as well
"catppuccin.customUIColors": {
"mocha": {
"statusBar.foreground": "accent",
},
},
"catppuccin-icons.hidesExplorerArrows": false,
"catppuccin-icons.specificFolders": true,
}