目錄

我在VS Code裡面用了哪些插件

簡單紀錄一下我在VS Code裡面裝了哪些插件

Cloud維運

文字編輯相關

Golang

Python

git相關

Hugo工作流程(Markdown編輯)

佈景主題

settings.json設定

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "One Dark Pro Darker",

    "[python]": {
        "editor.defaultFormatter": "ms-python.black-formatter",
		"editor.codeActionsOnSave": {
            "source.organizeImports": "explicit"
        }
    },
	"flake8.args": [
        "--max-line-length=100",
        "--ignore=E131,E302"
    ],
    "black-formatter.args": [
        "--line-length=100",
        "--skip-string-normalization"
    ],
	"isort.args": [
        "--src=${workspaceFolder}",
        "--line-length=100"
	],
	"isort.check": true,
    "autoDocstring.docstringFormat": "google-notypes",
    "git.ignoreRebaseWarning": true,
    "files.eol": "\n"
}