【发布时间】:2021-04-29 02:00:31
【问题描述】:
我在 VScode 和 sublime 中使用 相同的字体(Consolas)。但是在同一个地方看起来不一样:
这是我的 sublime 设置:
{
"auto_complete_selector": "source,text",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
"font_face": "Consolas",
"font_size": 12,
"ignored_packages":
[
],
"theme": "Default.sublime-theme"
}
这是我的 vscode 设置:
"materialTheme.accent": "Blue",
"editor.fontFamily": "Consolas, 'Courier New', monospace",
"editor.fontWeight": 520,
"editor.codeLensFontSize": 11,
"editor.fontSize": 15,
"editor.formatOnType": true,
"debug.console.fontFamily": "Cascadia Mono",
"python.showStartPage": false,
"workbench.editorAssociations": [
{
"viewType": "jupyter.notebook.ipynb",
"filenamePattern": "*.ipynb"
}
],
"explorer.confirmDelete": false,
"todo-tree.tree.showScanModeButton": true,
"editor.fontLigatures": true,
"editor.tokenColorCustomizations": {
"comments": "#7ea9eb"
我的问题是:如何让我的 vscode 字体像 sublime 一样倾斜?
【问题讨论】:
-
使用
Winter Is Coming等不同的主题,或使用 TextMate 范围自定义您当前的主题 -
感谢提示,这正是我想要的!@rioV8
-
你能提供你的配色方案的名称吗?谢谢!
-
vscode 主题是
Material~@AnsonH
标签: visual-studio-code sublimetext3 vscode-settings