Skip to content

Instantly share code, notes, and snippets.

@ioquatix
Created March 15, 2018 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ioquatix/e93a28d006cd0c23efb1d3887b4c41f4 to your computer and use it in GitHub Desktop.
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
* {
-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