VSCode 정리 및 최소 설정
VSCode( MonoKai Pro Theme )
VSCode( Noctis Theme variations )
설정
설정.json
{
"editor.fontSize": 13,
"editor.fontFamily": "Operator Mono",
"editor.lineHeight": 40,
"editor.minimap.enabled": false,
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "hidden",
"editor.lineNumbers": "off",
"editor.wordWrap": "on",
"editor.renderLineHighlight": "none",
"editor.renderIndentGuides": false,
"editor.overviewRulerBorder": false,
"workbench.editor.showTabs": false,
"editor.hideCursorInOverviewRuler": true,
"workbench.tree.renderIndentGuides": "none",
"breadcrumbs.enabled": false,
"workbench.statusBar.visible": false,
"workbench.activityBar.visible": false,
"workbench.startupEditor": "newUntitledFile",
"window.nativeTabs": true,
"workbench.iconTheme": "Monokai Pro Icons",
"workbench.sideBar.location": "right",
"git.enabled": false,
"workbench.colorTheme": "Monokai Pro"
}
키바인딩.json
// Place your key bindings in this file to override the defaults
[
{
"key": "cmd+t",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+`",
"command": "-workbench.action.terminal.toggleTerminal"
},
{
"key": "delete",
"command": "workbench.action.closeAllEditors"
},
{
"key": "cmd+k cmd+w",
"command": "-workbench.action.closeAllEditors"
}
]
탭에서 다른 파일 열기( ctrl
+ Tab
)
파일 탐색기 전환( ⌘
+ B
)
감사
Feel free to ask any questions about my setup & Also share your setup too !!
Reference
이 문제에 관하여(VSCode 정리 및 최소 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/ok9xnirab/vscode-clean-minimal-setup-34f6
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
{
"editor.fontSize": 13,
"editor.fontFamily": "Operator Mono",
"editor.lineHeight": 40,
"editor.minimap.enabled": false,
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "hidden",
"editor.lineNumbers": "off",
"editor.wordWrap": "on",
"editor.renderLineHighlight": "none",
"editor.renderIndentGuides": false,
"editor.overviewRulerBorder": false,
"workbench.editor.showTabs": false,
"editor.hideCursorInOverviewRuler": true,
"workbench.tree.renderIndentGuides": "none",
"breadcrumbs.enabled": false,
"workbench.statusBar.visible": false,
"workbench.activityBar.visible": false,
"workbench.startupEditor": "newUntitledFile",
"window.nativeTabs": true,
"workbench.iconTheme": "Monokai Pro Icons",
"workbench.sideBar.location": "right",
"git.enabled": false,
"workbench.colorTheme": "Monokai Pro"
}
// Place your key bindings in this file to override the defaults
[
{
"key": "cmd+t",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+`",
"command": "-workbench.action.terminal.toggleTerminal"
},
{
"key": "delete",
"command": "workbench.action.closeAllEditors"
},
{
"key": "cmd+k cmd+w",
"command": "-workbench.action.closeAllEditors"
}
]
Feel free to ask any questions about my setup & Also share your setup too !!
Reference
이 문제에 관하여(VSCode 정리 및 최소 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ok9xnirab/vscode-clean-minimal-setup-34f6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)