VSCODE 개발환경 설정

IOVEIT·2023년 10월 9일
0

1. 단축키 만들기

  • 커서 오른쪽 전부 삭제 : VSCODE 상단에 돋보기 → ">" 엔터 → Open Keyboard Shortcuts → 상단 검색 "Delete All Right" 엔터 → 우측 빈칸 Keybinding 더블클릭 → Ctrl+Shift+k 엔터

2. 플러그인

  • Black Formatter : This extension is supported for all actively supported versions of the python language
  • HTML CSS Support : HTML id and class attribute completion for Visual Studio Code.
  • IntelliCode : AI-assisted development features for Python, TypeScript/JavaScript and Java developers
  • Live Server : Launch a development local Server with live reload feature for static & dynamic pages
  • Pylance : A performant, feature-rich language server for Python in VS Code
  • Python : ntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), code formatting, refactoring, unit tests, and more
  • Gitlens : Supercharge Git and unlock untapped knowledge within your repository to better understand, write, and review code. Focus, collaborate, accelerate.
  • Git History : Git History, Search and More (including git log)

3. settings.json

{
    "[python]": {
        "editor.defaultFormatter": "ms-python.black-formatter",
        "editor.formatOnSave": true
    },
    "[html][django-html][handlebars][hbs][mustache][jinja][jinja-html][nj][njk][nunjucks][twig]": {
        "editor.defaultFormatter": "monosans.djlint"
    }
}
profile
EnCoCookLand

0개의 댓글