Last active
June 6, 2021 10:31
-
-
Save helloanoop/8fe7398501afc35326bb552c39180b60 to your computer and use it in GitHub Desktop.
VSCode Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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