Skip to main content

VScode - 安裝與環境建置

安裝 Visual Studio Code

VScode 下載
下載完後執行安裝檔,照著裡面的操作一路推過去即可。

warning

記得勾選 Add to PATH


更改終端機預設

預設是 PowerShell,若偏好 Git Bash,可以在 VScode 左下角找到設定 (齒輪標記) 進行預設更改。

在搜尋欄輸入 terminal default,沒意外可以看到 Terminal › Integrated › Default Profile: Windows 的選項,改成 Git Bash 即可。


自動儲存

設定 > 經常使用的 > Files: Auto save > afterDelay


單擊文件開啟新分頁 (預設情況下單擊會覆蓋)

settins.json 添加:"workbench.editor.enablePreview": false


安裝插件

可以安裝一下 VScode 插件幫忙作業。

基本插件

psi-header setting
.vscode/setting.json
{
// https://marketplace.visualstudio.com/items?itemName=psioniq.psi-header
"psi-header": {
"changes-tracking": {
"isActive": true,
"modAuthor": "Modified By: ",
"modDate": "Last Modified: ",
"modDateFormat": "date",
"include": [],
"exclude": [
"markdown",
"json"
],
"excludeGlob": [
"out/**",
"src/**/*.xyz"
],
"autoHeader": "manualSave"
},
"lang-config": [
{
"language": "*",
"begin": "/**",
"end": "*/",
"prefix": " * "
},
{
"language": "vue",
"begin": "<!--",
"end": "-->",
"prefix": " "
}
],
"config": {
"forceToTop": true,
"blankLinesAfter": 1,
},
"templates": [
{
"language": "*",
"template": [
"@FilePath: <<filerelativepath>>",
"@Date: <<filecreated('YYYY-MM-DD HH:mm:ss')>>",
"@Author: <<author>>",
"@Description:",
"-----",
"Last Modified: <<dateformat('YYYY-MM-DD HH:mm:ss')>>",
"Modified By: <<author>>",
"-----",
"Copyright (c) <<year>> by PLANTAE Taiwan, All Rights Reserved.",
],
},
]
},
}

HTML / CSS 相關

Markdown / MDX 相關

Python 相關

  • Python:可以在 VScode 上寫 Python。
  • Pylance:提供更好的對 Python 語言的支援,但要先安裝 Python 插件。

Vue 相關

純好玩系列

Buy Me A Coffee