settings.json of vscode

{
    "workbench.startupEditor": "none",
    "workbench.editorAssociations": {
        "*.ipynb": "jupyter-notebook"
    },


    "notebook.cellToolbarLocation": {
        "default": "right",
        "jupyter-notebook": "left"
    },

    
    "code-runner.runInTerminal": true,
    
    // PlantUML
    "plantuml.jar": "C:\\Portable\\Toolkit\\plantuml\\plantuml-1.2023.5.jar",

    // Editor
    "editor.fontFamily": "Hack,DejaVu Sans Mono",
    "editor.minimap.enabled": false,
    "editor.detectIndentation": false,
    "editor.tabSize": 4,

    // Terminal
    "terminal.integrated.profiles.windows": {
        "cmder": {
          "path": "C:\\WINDOWS\\System32\\cmd.exe",
          "args": ["/K"]
        }
    },
    "terminal.integrated.defaultProfile.windows": "cmder",


    // Python
    "[python]": {
        "editor.formatOnType": true
    },
    "python.defaultInterpreterPath": "C:\\Users\\zhang\\miniconda3\\python.exe",
    "python.condaPath": "C:\\Users\\zhang\\miniconda3\\Scripts\\conda.exe",
    "python.terminal.activateEnvironment": false,
}

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据

Back to Top