博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Atom中文乱码字体大小设置
阅读量:5768 次
发布时间:2019-06-18

本文共 1073 字,大约阅读时间需要 3 分钟。

  hot3.png

按 ctrl+,(ctrl+逗号)打开setting窗口,然后点击Open Config Folder按钮,打开设置文件配置窗口,点击左侧的 styles.less,文件内容修改如下:

/* * Your Stylesheet * * This stylesheet is loaded when Atom starts up and is reloaded automatically * when it is changed. * * If you are unfamiliar with LESS, you can read more about it here: * http://www.lesscss.org */ .tree-view {   font-size: 18px } // style the background and foreground colors on the atom-text-editor-element // itself atom-text-editor {   font-family:Droid Sans Mono, Droid Sans Fallback; } // To style other content in the text editor's shadow DOM, use the ::shadow // expression atom-text-editor::shadow .cursor { } html, body, .tree-view, .tab-bar .tab,.bottom{   font-family:Droid Sans Mono, Droid Sans Fallback; } .terminal {   font-size:12px;   font-family: Droid Sans Mono, Droid Sans Fallback; } .markdown-preview {   h1,h2,h3,h4,h5,h6 {     font-family: Droid Sans Mono, Droid Sans Fallback;   } }

如果发现其他地方有中文显示不出来,可以用Ctrl+Shift+I来开启调试模式,在调试模式里找到没有显示出中文的元素,在styles.less文件里定义他的样式,修改font-family的值基本就能解决。

转载于:https://my.oschina.net/lieefu/blog/476228

你可能感兴趣的文章
mysql或者mariadb备份脚本
查看>>
extundelete恢复文件
查看>>
电池温度检测原理和示例代码
查看>>
Linux服务器性能评估与优化、监控利器---dstat应用
查看>>
hdu 2842 Chinese Rings 矩阵快速幂
查看>>
Powershell进阶学习(4) Powershell强大的利器“管道”
查看>>
关于GNU GPL
查看>>
request.getServletPath()和request.getPathInfo()用法
查看>>
nginx在响应request header时候带下划线的需要开启的选项
查看>>
Linux下DHCP服务器配置
查看>>
AndroidStudio中导入SlidingMenu报错解决方案
查看>>
我的IDEA配置
查看>>
myeclipse显示行号
查看>>
编写高性能的java程序
查看>>
Spring 的配置详解
查看>>
linux已经不存在惊群现象
查看>>
上位机和底层逻辑的解耦
查看>>
关于微信二次分享 配置标题 描述 图片??
查看>>
springcloud使用zookeeper作为config的配置中心
查看>>
hystrix实战之javanica
查看>>