vscode常用设置

{
    "editor.fontFamily": "Monaco, Consolas, 'Courier New', monospace",
    "editor.tabSize": 2,
    "editor.insertSpaces": true,
    "workbench.iconTheme": "vscode-great-icons",
    "workbench.colorTheme": "Monokai",
    "editor.fontSize": 16,

    // 自定义shell
    "terminal.integrated.shell.windows": "D:\\soft\\git\\bin\\bash.exe",
    "extensions.ignoreRecommendations": false,

    // js格式化匿名函数名与括号之前不加空格, 如function f[_]() {}, [_]位置无空格
    "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false
}

猜你喜欢

转载自blog.csdn.net/butterfly5211314/article/details/80561037