Created
March 13, 2017 07:35
-
-
Save liberium/736f09b2cae52f76827c78cb14937800 to your computer and use it in GitHub Desktop.
Using Fira Code for operators only in Atom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
atom-workspace { | |
font-family: "Helvetica Neue"; | |
} | |
atom-panel.tool-panel { | |
// font-size: 0.95em; | |
} | |
atom-text-editor.editor { | |
font-size: 16px; | |
font-weight: normal; | |
line-height: 1.7; | |
.syntax--entity.syntax--other.syntax--attribute-name.syntax--jsx, | |
.syntax--storage.syntax--type.syntax--function.syntax--js, | |
.syntax--storage.syntax--type.syntax--class.syntax--js { | |
font-style: italic !important; | |
} | |
.syntax--keyword.syntax--operator, | |
.syntax--storage.syntax--type.syntax--function.syntax--arrow.syntax--js { | |
font-family: 'Fira Code'; | |
font-style: normal !important; | |
text-rendering: optimizeLegibility; | |
} | |
} | |
atom-text-editor .cursor-line .syntax--keyword.syntax--operator { | |
text-rendering: auto; | |
} |
Author
liberium
commented
Mar 13, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment