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" : ""
}
}
]
} 即將推出...