vault backup: 2023-11-13 18:11:40

This commit is contained in:
2023-11-13 18:11:40 +08:00
parent c4f68a0a66
commit 6d46643b46
3 changed files with 84 additions and 75 deletions

View File

@@ -21,84 +21,57 @@
```json
{
"python.terminal.activateEnvironment": true, // 自動啟動環境
"python.linting.pylintEnabled": true, // 需要 pip install pylint
"python.linting.enabled": true,
"python.autoComplete.addBrackets": true, // 自動為自動完成的function加上括號
"python.languageServer": "Pylance",
"python.analysis.completeFunctionParens": true,
"jupyter.sendSelectionToInteractiveWindow": true,
"jupyter.interactiveWindowMode": "perFile",
"terminal.integrated.fontFamily": "Fira Code", // For Windows
"terminal.integrated.profiles.windows": {
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"PowerShell -NoProfile": {
"source": "PowerShell",
"args": ["-NoProfile"]
}
},
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"terminal.integrated.cwd": "${fileDirname}",
// "editor.fontFamily": "Cascadia code Light",
// "editor.fontFamily": "PragmataPro Liga",
// "editor.fontFamily": "Fira Code Retina",
"editor.fontFamily": "Iosevka Expanded",
// "editor.fontFamily": "Hasklig Light",
"editor.fontSize": 14,
"editor.fontLigatures": true,
// 文字編輯器
"editor.bracketPairColorization.enabled": true,
"editor.fontFamily": "Cascadia Code", // 字型
"editor.fontLigatures": true, //啟用連字
"editor.fontSize": 14, // 文字大小
"editor.fontWeight": "normal",
"editor.guides.bracketPairs": false,
"editor.guides.indentation": false,
"editor.insertSpaces": true,
"editor.minimap.renderCharacters": false,
"editor.renderWhitespace": "boundary",
"editor.renderIndentGuides": false,
"editor.insertSpaces": true,
"editor.renderLineHighlight": "all", // 整行高亮
"editor.snippetSuggestions": "top", // 將程式碼片段建議顯示於頂端
"editor.tabCompletion": "on", // 啟用tab鍵自動完成
"editor.tabSize": 4,
"editor.bracketPairColorization.enabled": true,
"editor.wordWrap": "off",
"outline.showVariables": false,
"sync.gist": "aaee0ee8733879ef2da2eb1b4bf8a993",
"sync.quietSync": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.forceDownload": false,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
// 檔案
"files.trimTrailingWhitespace": true, // 儲存檔案時去除行尾空白
"files.insertFinalNewline": true, // 儲存檔案時在結尾插入一個新行
// 檔案管理員
"explorer.confirmDelete": false,
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme",
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"oneDarkPro.vivid": true,
"gitlens.advanced.messages": {
"suppressImproperWorkspaceCasingWarning": true
},
// 工作台
"workbench.colorTheme": "One Dark Pro", // 主題
"workbench.iconTheme": "material-icon-theme", // Icon主題
"workbench.tree.indent": 15,
"workbench.tree.renderIndentGuides": "always",
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#1073cf2d",
"editor.lineHighlightBorder": "#9fced11f"
"tree.indentGuidesStroke": "#05ef3c"
},
"editor.wordWrap": "off",
"breadcrumbs.enabled": true, // 啟用麵包屑,可以通過上方路徑來資料夾、文件或者是函數的跳轉
"oneDarkPro.vivid": true,
"diffEditor.wordWrap": "off",
"editor.guides.indentation": false,
"editor.guides.bracketPairs": false,
// 終端機
"terminal.integrated.fontFamily": "Fira Code",
"editor.accessibilitySupport": "off",
"[python]": {
"editor.formatOnType": true
},
"polacode.target": "snippet",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": false,
"scminput": false
}
}
```