Created
March 15, 2018 09:57
-
-
Save ioquatix/e93a28d006cd0c23efb1d3887b4c41f4 to your computer and use it in GitHub Desktop.
Switch off ligatures on current lines, in quoted strings, and in regular expressions
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
* { | |
-webkit-font-smoothing: antialiased; | |
} | |
atom-text-editor { | |
text-rendering: optimizeLegibility; | |
} | |
atom-text-editor.editor .syntax--comment { | |
font-style: normal !important; | |
} | |
atom-text-editor.editor .syntax--string.syntax--quoted, | |
atom-text-editor.editor .syntax--string.syntax--regexp, | |
atom-text-editor.editor .cursor-line, | |
.find-and-replace atom-text-editor.editor .line { | |
-webkit-font-feature-settings: "liga" off, "calt" off; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment