본문 바로가기
programing/Common

vscode 쓰다가 쓰게 된 설정과 몇 가지

by RedWiz 2018. 9. 11.

User Setting.json


{
    "editor.fontFamily": "D2Coding",
    "editor.fontSize": 15,
    "terminal.integrated.fontFamily": "Consolas, 'Courier New', monospace",

    "[pascal]":{
        "files.encoding": "euckr",
        "editor.tabSize": 2,
        "editor.showFoldingControls": "always"
    },
    "[javascript]":{
        "files.encoding": "utf8",
        "editor.tabSize": 2,
        "editor.showFoldingControls": "always"
          },
    "[javascriptreact]":{
        "files.encoding": "utf8",
        "editor.tabSize": 2,
        "editor.showFoldingControls": "always"
        },
    "git.ignoreMissingGitWarning": true,
    "workbench.iconTheme": "material-icon-theme",
    "files.associations": {
        "*.js": "javascriptreact"
    },

}


폰트 설정


언어별 탭사이즈, 인코딩, 폴딩컨트롤 항상 보이기


깃 경고 무시


아이콘


파일 확장자에 따른 파일 타입


keybinding

[
    {
        "key": "ctrl+shift+u",
        "command": "-workbench.action.output.toggleOutput"
    },
    {
        "key": "ctrl+u",
        "command": "-cursorUndo",
        "when": "textInputFocus"
    },
    {
        "key": "ctrl+u",
        "command": "editor.action.transformToUppercase"
    },
    {
        "key": "ctrl+shift+u",
        "command": "editor.action.transformToLowercase"
    }
]


대문자 소문자 변환