Skip to content
SaeHie Park edited this page Sep 11, 2018 · 2 revisions

User settings

// Place your settings in this file to overwrite the default settings
{
    "http.proxyStrictSSL": false,
    "http.proxy":"http://1.2.3.4:8080/",

    // Controls the font size in pixels.
    "editor.fontSize": 14,
    "editor.tabSize": 2,
    "editor.rulers": [80,100],
    "editor.renderWhitespace": "boundary",
    "editor.wordWrap": "off",
    "editor.fontFamily": "Monaco, Menlo, Monaco, Consolas, 'Courier New', monospace",

    "files.eol": "\n",

    "workbench.fontAliasing": "antialiased",
  
    // parameter hints
    "editor.parameterHints": false,

    // Controls if suggestions should automatically show up when typing trigger characters
    "editor.suggestOnTriggerCharacters": false,

    // Controls if quick suggestions should show up or not while typing
    "editor.quickSuggestions": false,
    
    // Enable word based suggestions.
    "editor.wordBasedSuggestions": false,
    // "workbench.colorTheme": "Visual Studio Dark",

    //
    "extensions.ignoreRecommendations": false,
    // don't show restore C# project noti
    // https://github.com/OmniSharp/omnisharp-vscode/pull/868
    //"csharp.suppressDotnetRestoreNotification": true

    "files.associations": {
        "*.cu": "cpp"
    },

    // Controls whether inactive preprocessor blocks are colored differently than active code. This setting is ignored by the Tag Parser engine.
    "C_Cpp.dimInactiveRegions": false

    , "editor.detectIndentation": false
    , "[makefile]" : {
      "editor.tabSize": 4
    }

}

Clone this wiki locally