Skip to content

Instantly share code, notes, and snippets.

@stevemcquaid
Last active February 5, 2018 18:58
Show Gist options
  • Select an option

  • Save stevemcquaid/0b63d362751bdd0f3fc27ed19b898a53 to your computer and use it in GitHub Desktop.

Select an option

Save stevemcquaid/0b63d362751bdd0f3fc27ed19b898a53 to your computer and use it in GitHub Desktop.

Revisions

  1. stevemcquaid revised this gist Feb 5, 2018. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion vscode configs
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,6 @@
    // Place your settings in this file to overwrite the default settings
    {
    "editor.selectionClipboard": false,
    "editor.fontSize": 11,
    "window.zoomLevel": 1,
    "editor.wordWrap": "on",

  2. stevemcquaid created this gist Feb 5, 2018.
    20 changes: 20 additions & 0 deletions vscode configs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    // Place your settings in this file to overwrite the default settings
    {
    "window.zoomLevel": 1,
    "editor.wordWrap": "on",

    // Place your settings in this file to overwrite default and user settings. {
    // Controls if quick suggestions should show up while typing
    "editor.quickSuggestions": false,

    // Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions.
    "editor.acceptSuggestionOnEnter": false,

    // Controls the delay in ms after which quick suggestions will show up.
    "editor.quickSuggestionsDelay": 10,

    // Enable word based suggestions
    "editor.wordBasedSuggestions": false


    }