본문 바로가기
AICC 과정 정리

VS code 세팅

by 미르아 2024. 12. 27.
728x90

VS code 확장프로그램 설치

VS CODE - Live server 설치 - port 열어서 바로 수정 사항 확인할 수 있도록 해줌 서버 접속할 수 없을 때 변경 사항 확인

end list - 태그 위치 확인

프리티어 설정 코드

{
  "diffEditor.wordWrap": "on",
  "editor.wordWrap": "on",
  "editor.tabSize": 2,
  "editor.accessibilitySupport": "off",
  "security.workspace.trust.untrustedFiles": "open",
  "editor.tokenColorCustomizations": {
    "comments": "#d39e9e"
  },
  "prettier.jsxSingleQuote": false,
  // "prettier.jsxBracketSameLine": true,
  "launch": {
    "configurations": [],
    "compounds": []
  },
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  // "[css]": {
  //   "editor.defaultFormatter": null,
  //   "editor.formatOnSave": false
  // },
  // "[html]": {
  //   "editor.defaultFormatter": null,
  //   "editor.formatOnSave": false
  // },
  "emmet.includeLanguages": {
    "javascript": "javascriptreact"
  },

  "editor.formatOnSave": true,
  "javascript.updateImportsOnFileMove.enabled": "always",
  "[dart]": {
    "editor.formatOnSave": true,
    "editor.formatOnType": true,
    "editor.rulers": [80],
    "editor.selectionHighlight": false,
    "editor.suggest.snippetsPreventQuickSuggestions": false,
    "editor.suggestSelection": "first",
    "editor.tabCompletion": "onlySnippets",
    "editor.wordBasedSuggestions": "off"
  },
  "dart.debugExternalPackageLibraries": true,
  "dart.debugSdkLibraries": true,
  "editor.fontSize": 12,
  "prettier.singleQuote": true,
  "git.ignoreMissingGitWarning": true,
  "php.validate.executablePath": "",
  "editor.fontFamily": "'D2Coding', Menlo, Monaco, 'Courier New', monospace",
  "cssVariables.blacklistFolders": [
    "**/.git",
    "**/.svn",
    "**/.hg",
    "**/CVS",
    "**/.DS_Store",
    "**/.git",
    "**/node_modules",
    "**/bower_components",
    "**/tmp",
    "**/dist",
    "**/tests"
  ],
  "cssVariables.lookupFiles": [
    "**/*.css",
    "**/*.scss",
    "**/*.sass",
    "**/*.less"
  ],
  "git.autofetch": true,
  "workbench.iconTheme": "material-icon-theme",
  "window.zoomLevel": 1,
  "workbench.colorTheme": "Default Dark+",
  "editor.minimap.renderCharacters": false,
  "editor.stickyScroll.enabled": false,
  "window.titleBarStyle": "custom",
  // "animations.Install-Method": "Apc Customize UI++",
  "update.mode": "manual",
  "apc.imports": [
    "file:///Users/hanchangho/.vscode/extensions/brandonkirbyson.vscode-animations-2.0.1/dist/updateHandler.js"
  ],
  "apc.electron": {
    "opacity": 0.85,
    "transparent": true,
    "backgroundColor": "#00000000",
    "vibrancy": "ultra-dark"
  }
}

적용 전 css

적용 후 css - 저장하면 알아서 태그 나눠짐

VS CODE - Live server 설치 - port 열어서 바로 수정 사항 확인할 수 있도록 해줌 서버 접속할 수 없을 때 변경 사항 확인

end list - 태그 위치 확인

프리티어 설정 코드

{
  "diffEditor.wordWrap": "on",
  "editor.wordWrap": "on",
  "editor.tabSize": 2,
  "editor.accessibilitySupport": "off",
  "security.workspace.trust.untrustedFiles": "open",
  "editor.tokenColorCustomizations": {
    "comments": "#d39e9e"
  },
  "prettier.jsxSingleQuote": false,
  // "prettier.jsxBracketSameLine": true,
  "launch": {
    "configurations": [],
    "compounds": []
  },
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  // "[css]": {
  //   "editor.defaultFormatter": null,
  //   "editor.formatOnSave": false
  // },
  // "[html]": {
  //   "editor.defaultFormatter": null,
  //   "editor.formatOnSave": false
  // },
  "emmet.includeLanguages": {
    "javascript": "javascriptreact"
  },

  "editor.formatOnSave": true,
  "javascript.updateImportsOnFileMove.enabled": "always",
  "[dart]": {
    "editor.formatOnSave": true,
    "editor.formatOnType": true,
    "editor.rulers": [80],
    "editor.selectionHighlight": false,
    "editor.suggest.snippetsPreventQuickSuggestions": false,
    "editor.suggestSelection": "first",
    "editor.tabCompletion": "onlySnippets",
    "editor.wordBasedSuggestions": "off"
  },
  "dart.debugExternalPackageLibraries": true,
  "dart.debugSdkLibraries": true,
  "editor.fontSize": 12,
  "prettier.singleQuote": true,
  "git.ignoreMissingGitWarning": true,
  "php.validate.executablePath": "",
  "editor.fontFamily": "'D2Coding', Menlo, Monaco, 'Courier New', monospace",
  "cssVariables.blacklistFolders": [
    "**/.git",
    "**/.svn",
    "**/.hg",
    "**/CVS",
    "**/.DS_Store",
    "**/.git",
    "**/node_modules",
    "**/bower_components",
    "**/tmp",
    "**/dist",
    "**/tests"
  ],
  "cssVariables.lookupFiles": [
    "**/*.css",
    "**/*.scss",
    "**/*.sass",
    "**/*.less"
  ],
  "git.autofetch": true,
  "workbench.iconTheme": "material-icon-theme",
  "window.zoomLevel": 1,
  "workbench.colorTheme": "Default Dark+",
  "editor.minimap.renderCharacters": false,
  "editor.stickyScroll.enabled": false,
  "window.titleBarStyle": "custom",
  // "animations.Install-Method": "Apc Customize UI++",
  "update.mode": "manual",
  "apc.imports": [
    "file:///Users/hanchangho/.vscode/extensions/brandonkirbyson.vscode-animations-2.0.1/dist/updateHandler.js"
  ],
  "apc.electron": {
    "opacity": 0.85,
    "transparent": true,
    "backgroundColor": "#00000000",
    "vibrancy": "ultra-dark"
  }
}

적용 전 css

적용 후 css - 저장하면 알아서 태그 나눠짐

VS CODE - Live server 설치 - port 열어서 바로 수정 사항 확인할 수 있도록 해줌 서버 접속할 수 없을 때 변경 사항 확인

end list - 태그 위치 확인

프리티어 설정 코드

{
  "diffEditor.wordWrap": "on",
  "editor.wordWrap": "on",
  "editor.tabSize": 2,
  "editor.accessibilitySupport": "off",
  "security.workspace.trust.untrustedFiles": "open",
  "editor.tokenColorCustomizations": {
    "comments": "#d39e9e"
  },
  "prettier.jsxSingleQuote": false,
  // "prettier.jsxBracketSameLine": true,
  "launch": {
    "configurations": [],
    "compounds": []
  },
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  // "[css]": {
  //   "editor.defaultFormatter": null,
  //   "editor.formatOnSave": false
  // },
  // "[html]": {
  //   "editor.defaultFormatter": null,
  //   "editor.formatOnSave": false
  // },
  "emmet.includeLanguages": {
    "javascript": "javascriptreact"
  },

  "editor.formatOnSave": true,
  "javascript.updateImportsOnFileMove.enabled": "always",
  "[dart]": {
    "editor.formatOnSave": true,
    "editor.formatOnType": true,
    "editor.rulers": [80],
    "editor.selectionHighlight": false,
    "editor.suggest.snippetsPreventQuickSuggestions": false,
    "editor.suggestSelection": "first",
    "editor.tabCompletion": "onlySnippets",
    "editor.wordBasedSuggestions": "off"
  },
  "dart.debugExternalPackageLibraries": true,
  "dart.debugSdkLibraries": true,
  "editor.fontSize": 12,
  "prettier.singleQuote": true,
  "git.ignoreMissingGitWarning": true,
  "php.validate.executablePath": "",
  "editor.fontFamily": "'D2Coding', Menlo, Monaco, 'Courier New', monospace",
  "cssVariables.blacklistFolders": [
    "**/.git",
    "**/.svn",
    "**/.hg",
    "**/CVS",
    "**/.DS_Store",
    "**/.git",
    "**/node_modules",
    "**/bower_components",
    "**/tmp",
    "**/dist",
    "**/tests"
  ],
  "cssVariables.lookupFiles": [
    "**/*.css",
    "**/*.scss",
    "**/*.sass",
    "**/*.less"
  ],
  "git.autofetch": true,
  "workbench.iconTheme": "material-icon-theme",
  "window.zoomLevel": 1,
  "workbench.colorTheme": "Default Dark+",
  "editor.minimap.renderCharacters": false,
  "editor.stickyScroll.enabled": false,
  "window.titleBarStyle": "custom",
  // "animations.Install-Method": "Apc Customize UI++",
  "update.mode": "manual",
  "apc.imports": [
    "file:///Users/hanchangho/.vscode/extensions/brandonkirbyson.vscode-animations-2.0.1/dist/updateHandler.js"
  ],
  "apc.electron": {
    "opacity": 0.85,
    "transparent": true,
    "backgroundColor": "#00000000",
    "vibrancy": "ultra-dark"
  }
}

적용 전 css

적용 후 css - 저장하면 알아서 태그 나눠짐

728x90

'AICC 과정 정리' 카테고리의 다른 글

node child python  (1) 2024.12.29
맥에서 React와 Git 설치 및 설정 가이드  (7) 2024.12.28
Git 명령어 정리  (0) 2024.12.28
CSS / Animation  (2) 2024.12.27
CSS  (1) 2024.12.27