필요한 extension 설치
- prettier
- git graph
- brackets
autoSave 설정
settings.json에서 환경변수 설정
python의 경우 black 사용
{
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"files.autoSave": "afterDelay",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"java.configuration.runtimes": [
],
"diffEditor.wordWrap": "on",
"java.home": "/usr/lib/jvm/java-11-openjdk-amd64",
"editor.fontFamily": "'Droid Sans Mono', 'monospace', monospace",
"git.autofetch": true,
"git.suggestSmartCommit": false,
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"80"
],
"workbench.editorAssociations": [
{
"viewType": "jupyter.notebook.ipynb",
"filenamePattern": "*.ipynb"
}
],
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false
}
'develop > etc' 카테고리의 다른 글
[vscode] 단축키 (0) | 2021.09.21 |
---|---|
[wsl2] windows terminal shell 꾸미기 (0) | 2021.09.19 |
[wsl2] windows 10에 wsl2 설치하기 (0) | 2020.12.26 |
windows에 chocolatey 설치하기 (0) | 2020.12.25 |
Fault Tolerant (0) | 2020.12.07 |