Skip to content

Instantly share code, notes, and snippets.

@CaptainOfFlyingDutchman
Created August 28, 2017 08:55
Show Gist options
  • Save CaptainOfFlyingDutchman/25182f8d9f934f91976b6062dc054f76 to your computer and use it in GitHub Desktop.
Save CaptainOfFlyingDutchman/25182f8d9f934f91976b6062dc054f76 to your computer and use it in GitHub Desktop.
Settings I use on VS Code to assist in coding.

Keymap

// Place your key bindings in this file to overwrite the defaults
[
    {
        "key": "ctrl+b",
        "command": "editor.action.goToDeclaration",
        "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
    },
    {
        "key": "f12",
        "command": "-editor.action.goToDeclaration",
        "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
    },
    {
        "key": "ctrl+escape",
        "command": "workbench.action.toggleSidebarVisibility"
    },
    {
        "key": "ctrl+b",
        "command": "-workbench.action.toggleSidebarVisibility"
    }
]

Settings

{
    "editor.fontFamily": "monofur",
    "editor.fontSize": 17,
    "window.zoomLevel": 0,
    "workbench.editor.enablePreview": true,
    "workbench.editor.enablePreviewFromQuickOpen": false,
    "workbench.colorTheme": "Default Light+",
    "editor.minimap.showSlider": "always",
    "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}${separator}${appName}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment