1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| { "git.autofetch": true, #깃허브 자동 "workbench.colorTheme": "One Dark Pro Mix", #화면 컬러 "workbench.iconTheme": "ayu", #탐색기 아이콘 "workbench.settings.editor": "json", #설정을 json으로 바꾸는 기능(현재) "workbench.settings.openDefaultSettings": true, "workbench.settings.useSplitJSON": true, "editor.fontSize": 13, "editor.fontWeight": "normal", "debug.console.fontSize": 13, "terminal.integrated.fontSize": 13, "markdown.preview.fontSize": 13, "editor.codeActionsOnSave": { "source.fixAll.markdownlint": true } "editor.minimap.enabled": false, #VScode 오른쪽 위편에 맵처럼 보이는 미니맵 제거 "terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular'", #터미널 폰트에 \'사용해줘야 적용됨 "terminal.external.osxExec": "iTerm.app", #터미널 -> iTerm "terminal.explorerKind": "external", #internal이 아니라 외부(iTerm) "terminal.integrated.shell.osx": '/bin/zsh', #zsh라고 해도됨
|