atom - one dark的注释默认注释字体为斜体,显示中文的时候,很不好看。
解决方案一:
File -> Stylesheet -> 弹出 style.less,在其中添加如下代码:
atom-text-editor.editor .syntax--comment{
font-style: normal; //注释非斜体
font-size: 14px; //注释字号
color: gray; //注释颜色
}
解决方案二:
https://blog.csdn.net/allaxin/article/details/78547401