본문 바로가기
개발팁

Visual Studio Code 세팅

by 몸에배인매너 2022. 3. 7.

확장프로그램

Auto Rename Tag
autoDocstring - Python Docstring Generator
Community Material Theme
Django
Docker
Excel Viewer
HTML Snippets
Jinja
Jupyter
Jupyter Keymap
Jupyter Notebook Renderers
Live server
Material lcom Theme
open in browser
Prettier - Code formatter
Pylance
Python
Python Environment Manager
Python Extension Pack
Python for VSCode
Python Indent
Rainbow CSV
Shader languages supprot for VS Code
Visual Studio Inetellicode
Zip File Explorer
Glasslt-VSC
The Doki Theme

 

Preferences: Open User Settings(JSON)

{
    "workbench.colorTheme": "Community Material Theme",
    "explorer.confirmDelete": false,
    "terminal.integrated.fontSize": 16, // terminal font size.
    // 주석 색 커스터마이징.
    "editor.tokenColorCustomizations": {
        "comments": "#8AC743"
    },
    "editor.minimap.scale": 2, // minimap Size.
    "editor.minimap.showSlider": "always", // minimap Slider.
    "editor.minimap.size": "fill", // fill the minimap to bottom of code line screen.
    "editor.smoothScrolling": true, // activate smooth scrolling.
    "terminal.integrated.mouseWheelScrollSensitivity": 3, // smooth scrolling sensitivity Amount.
    "editor.mouseWheelScrollSensitivity": 2, // scrolling Amount of rows Sensitivity.
    "editor.fastScrollSensitivity": 3, // accelate scrolling Amount of rows Sensitivity.
    "workbench.list.smoothScrolling": true, // activate smooth scrolling of folder files list.
    "terminal.integrated.enableShellIntegration": true, // activate linux & macOS (bash, pwsh, zsh) shells.
    // 워크벤치 백그라운드 컬러, 및 코드라인 셀렉션 컬러 커스터마이징.
    "workbench.colorCustomizations": {
        // Base editor settings.
        "editor.background": "#3A3A3A", // Background Colour.
        "editorLineNumber.activeForeground": "#E5FF00", // active linenumber colour.
        "editorLineNumber.foreground": "#999999", // Linenumber colour.
        "editor.selectionBackground": "#000000", // Color of the editor selection.
    },
    // 폰트 커스터마이징.
    "editor.fontFamily": "Consolas, 'Courier New', 'Malgun Gothic', monospace", // font family.
    "editor.fontSize": 14, // Font Size.
    "editor.fontWeight": "400", // Font Weight.
    // 미니맵 커스터 마이징.
    "editor.minimap.enabled": true, // Minimap Enable.
    "editor.minimap.maxColumn": 150, // show the Minimap max Column.
    "workbench.sideBar.location": "left",
    "javascript.updateImportsOnFileMove.enabled": "always",
    "workbench.iconTheme": "material-icon-theme",
    "glassit.alpha": 245,
}

'개발팁' 카테고리의 다른 글

Webpack 사용방법  (1) 2022.03.27
pipenv 가상환경  (0) 2022.03.07
Override, Method (메소드) 란  (0) 2022.02.16
Django 심화과정 듣기 전 기본 개념  (0) 2022.02.15
GitHub 터미널로 사용하기  (0) 2022.02.02

댓글