FiraCode2iScript
1.0.0
fira代码v5.2和iScript的mish-mash
我最初使用的是https://github.com/kencrocken/firacodeiscript,但是它已经有一段时间没有进行更新,FIRA代码自从我想使用它以来就已经有很多非常有用的更新。
最初,这是FIRA代码V2 + iScript,但是FIRA代码从那以后已经有了多个版本。在某个时候,我可能会在字体上应用一个次要重命名以删除两个/2,以便命名有些……相关!
这真的很容易安装 - 下载三个.ttf文件并将其安装在系统上。
然后,启动您使用的任何代码编辑器,并将Fira Code Two iScript作为您的字体系列。
在VSCODE中,我使用(多台机器的后备):
"editor.fontFamily" : " Fira Code Two iScript, FiraCode-Retina, Fira Code Retina, Fira Code, Consolas, 'Courier New', monospace " ,然后,我还将以下内容应用于settings.json以及启用斜体:
"editor.tokenColorCustomizations" : {
"textMateRules" : [
{
"scope" : [
"comment" ,
"constant" , //String, Number, Boolean…, this, super
"keyword" , //import, export, return…
"markup.italic" ,
"meta.selector" ,
"storage.modifier" , //static keyword
"storage.type" ,
"storage.type.class.js" , //class keyword
"variable.language" ,
] ,
"settings" : {
"fontStyle" : "italic" ,
}
} ,
{
"scope" : [
//following will be excluded from italics (VSCode has some defaults for italics which aren't amazingT)
"invalid" ,
"keyword.operator" ,
"constant.numeric.css" ,
"keyword.other.unit.px.css" ,
"constant.numeric.decimal.js" ,
"constant.numeric.json"
] ,
"settings" : {
"fontStyle" : ""
}
}
]
} 即将推出...