美文网首页
ubuntu下vs code的配置

ubuntu下vs code的配置

作者: zhujunhua | 来源:发表于2019-07-19 09:48 被阅读0次
字体配置

在设置中搜索'font',在'Editor: Font family'中修改,
如下是Ubuntu下VSCode默认字体设置
'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'
在最前面添加'Courier New'即可。

settings.json配置文件

{
    "editor.fontSize": 18,
    "C_Cpp.default.cStandard": "c99",
    "editor.tabCompletion": "on",
    "editor.renderControlCharacters": true,
    "editor.renderWhitespace": "all",
    "editor.detectIndentation": false,
    "editor.tabSize": 4,
    "editor.fontFamily": "'Courier New', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'"
}

ubuntu下安装VSCode及调试c程序--简单明了

Ubuntu16.04下配置VScode的C/C++开发环境

相关文章

网友评论

      本文标题:ubuntu下vs code的配置

      本文链接:https://www.haomeiwen.com/subject/kktjlctx.html