vscode的settings.json的配置样例

版权声明:诸葛老刘所有 https://blog.csdn.net/weixin_39791387/article/details/83025982

我的VSconde.settings.json的配置文件

{
    "python.pythonPath": "D:\\Anaconda3\\envs\\python3",
    "workbench.colorTheme": "Monokai",
    "window.zoomLevel": 0,
    "explorer.confirmDelete": false,
    "editor.accessibilitySupport": "off",
    "editor.formatOnPaste": true,
    "editor.formatOnSave": false,
    "editor.formatOnType": false,
    "editor.showFoldingControls": "mouseover",
    // 控制编辑器是否显示缩进参考线。
    "editor.renderIndentGuides": true,
    "editor.multiCursorModifier": "ctrlCmd",
    # 将原来的cmd.exe 替换为bash.exe  因为更喜欢bash.exe的操作
    "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
    "terminal.integrated.rendererType": "dom",
    "workbench.activityBar.visible": true,
    "python.jediEnabled": false
}

猜你喜欢

转载自blog.csdn.net/weixin_39791387/article/details/83025982
今日推荐