Skip to content

Instantly share code, notes, and snippets.

@helloanoop
Last active June 6, 2021 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save helloanoop/8fe7398501afc35326bb552c39180b60 to your computer and use it in GitHub Desktop.
Save helloanoop/8fe7398501afc35326bb552c39180b60 to your computer and use it in GitHub Desktop.
VSCode Settings
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+left",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+right",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
}
]
{
"java.home": "/usr/lib/jvm/java-11-openjdk-amd64",
"editor.tabSize": 2,
"editor.insertSpaces": true,
"workbench.colorCustomizations": {
"[Slush & Poppies+]": {
"editor.foreground": "#101010",
"editor.background": "#f1f1f1",
"sideBar.background": "#f1f1f1"
}
},
"editor.tokenColorCustomizations": {
"[Slush & Poppies+]": {
"textMateRules": [
{
"name": "Types declaration and references",
"scope": [
"support.class.component.js",
],
"settings": {
"foreground": "#9700a0"
}
},
]
}
},
"editor.lineHeight": 28,
"emmet.triggerExpansionOnTab": true,
"editor.fontSize": 16,
"editor.fontFamily": "'Consolas', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"window.zoomLevel": 0,
"javascript.updateImportsOnFileMove.enabled": "never",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.colorTheme": "Slush & Poppies+",
"diffEditor.ignoreTrimWhitespace": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment