慢慢的感觉vscode是一个比较灵敏轻量的代码编辑器,后期代码将慢慢使用vscode进行编写
1、Paste Image
在vscode的markdown中黏贴图片更方便,可以用于代替Typora 黏贴快捷键:option+command+c
个人习惯配置
{
"pasteImage.basePath": "${projectRoot}",
"pasteImage.path": "${projectRoot}/assets/images/artcles/${currentFileNameWithoutExt}.assets",
"pasteImage.prefix": "http://taoey.github.io/"
}
2、git 相关
2.1 Git Graph
用于查看git提交记录图
2.2 GitLens
主要用于显示当前行的最近提交
2.3 Git History
3、Project Manager
可以便捷的进行项目文件夹的管理
4、主题相关
个人感觉 One Dark Pro 这个主题很不错
注意要选择:flat 这个选项,整体更加舒服
配色展示:
总配置
{
"editor.fontSize": 15,
"files.autoSave": "onFocusChange",
"terminal.integrated.fontSize": 14,
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"workbench.colorTheme": "Monokai",
"go.formatTool": "gofmt",
"go.goroot": "/usr/local/go",
"explorer.confirmDelete": false,
"leetcode.endpoint": "leetcode-cn",
"leetcode.hint.configWebviewMarkdown": false,
"leetcode.workspaceFolder": "/Users/tao/Documents/nut_files/github/1_projects/learning-python/algorithm/leetcode",
"leetcode.defaultLanguage": "python3",
"go.toolsManagement.autoUpdate": true,
"security.workspace.trust.untrustedFiles": "open",
"git.confirmSync": false,
"git.ignoreLegacyWarning": true,
"pasteImage.basePath": "${projectRoot}",
"pasteImage.path": "${projectRoot}/assets/images/artcles/${currentFileNameWithoutExt}.assets",
"pasteImage.prefix": "http://taoey.github.io/",
}