Skip to content

Instantly share code, notes, and snippets.

@yozachar
Last active May 3, 2024 02:35
Show Gist options
  • Save yozachar/fb35ba26d7d9f705b749d8e88924ad3a to your computer and use it in GitHub Desktop.
Save yozachar/fb35ba26d7d9f705b749d8e88924ad3a to your computer and use it in GitHub Desktop.
VSCode default cross-platform settings
{
"diffEditor.ignoreTrimWhitespace": false,
"editor.fontFamily": "'CaskaydiaCove Nerd Font', 'Cascadia Code', 'FiraCode Nerd Font', 'Fira Code', 'Droid Sans Mono', 'Courier New', Consolas, monospace",
"editor.fontLigatures": true,
"editor.linkedEditing": true,
"editor.wordWrap": "on",
"telemetry.telemetryLevel": "off",
"terminal.integrated.commandsToSkipShell": [
"-workbench.action.quickOpenView"
],
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"args": [
"bash"
],
"icon": "terminal-bash",
"overrideName": true,
"path": "/app/bin/host-spawn"
}
},
"window.commandCenter": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment